Skip to content

Data Models

application

Application

__attrs_init__(self, description, acronym, trackingFieldId, maxTrackingId, name, fields, id, version, createdByUser={}, modifiedByUser={}, permissions={}, workspaces=None, createWorkspace=None, timeTrackingEnabled=None, selectionFields=None, uid=None, disabled=None, layout=[], *, createdDate, modifiedDate) special

Method generated by attrs for class Application.

Source code in aqueduct/models/application.py
def __attrs_init__(self, description, acronym, trackingFieldId, maxTrackingId, name, fields, id, version, createdByUser=attr_dict['createdByUser'].default, modifiedByUser=attr_dict['modifiedByUser'].default, permissions=attr_dict['permissions'].default, workspaces=attr_dict['workspaces'].default, createWorkspace=attr_dict['createWorkspace'].default, timeTrackingEnabled=attr_dict['timeTrackingEnabled'].default, selectionFields=attr_dict['selectionFields'].default, uid=attr_dict['uid'].default, disabled=attr_dict['disabled'].default, layout=attr_dict['layout'].default, *, createdDate, modifiedDate):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('description', description)
    _setattr('acronym', acronym)
    _setattr('trackingFieldId', trackingFieldId)
    _setattr('maxTrackingId', maxTrackingId)
    _setattr('name', name)
    _setattr('fields', fields)
    _setattr('id', id)
    _setattr('version', version)
    _setattr('createdDate', createdDate)
    _setattr('createdByUser', createdByUser)
    _setattr('modifiedByUser', modifiedByUser)
    _setattr('permissions', permissions)
    _setattr('modifiedDate', modifiedDate)
    _setattr('workspaces', workspaces)
    _setattr('createWorkspace', createWorkspace)
    _setattr('timeTrackingEnabled', timeTrackingEnabled)
    _setattr('selectionFields', selectionFields)
    _setattr('uid', uid)
    _setattr('disabled', disabled)
    _setattr('layout', layout)
    if _config._run_validators is True:
        __attr_validator_fields(self, __attr_fields, self.fields)
    self.__attrs_post_init__()

__setattr__(self, name, val) special

Method generated by attrs for class Application.

Source code in aqueduct/models/application.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

asset

Asset (AssetBase)

__attrs_init__(self, type, pythonVersion, id, version, name, disabled, valid, uid, parameters={}, descriptor={}, description=None) special

Method generated by attrs for class Asset.

Source code in aqueduct/models/asset.py
def __attrs_init__(self, type, pythonVersion, id, version, name, disabled, valid, uid, parameters=attr_dict['parameters'].default, descriptor=attr_dict['descriptor'].default, description=attr_dict['description'].default):
    self.type = type
    self.pythonVersion = pythonVersion
    self.id = id
    self.version = version
    self.name = name
    self.disabled = disabled
    self.valid = valid
    self.uid = uid
    self.parameters = parameters
    self.descriptor = descriptor
    self.description = description

AssetBase

__init__(self, type, pythonVersion, id, version, name, disabled) special

Method generated by attrs for class AssetBase.

Source code in aqueduct/models/asset.py
def __init__(self, type, pythonVersion, id, version, name, disabled):
    self.type = type
    self.pythonVersion = pythonVersion
    self.id = id
    self.version = version
    self.name = name
    self.disabled = disabled

Descriptor (AssetBase)

__attrs_init__(self, type, pythonVersion, id, version, name, disabled, base64Image, family, description, testScript, testScriptFile, imageId, inputParameters={}, packageDescriptor={}) special

Method generated by attrs for class Descriptor.

Source code in aqueduct/models/asset.py
def __attrs_init__(self, type, pythonVersion, id, version, name, disabled, base64Image, family, description, testScript, testScriptFile, imageId, inputParameters=attr_dict['inputParameters'].default, packageDescriptor=attr_dict['packageDescriptor'].default):
    self.type = type
    self.pythonVersion = pythonVersion
    self.id = id
    self.version = version
    self.name = name
    self.disabled = disabled
    self.base64Image = base64Image
    self.family = family
    self.description = description
    self.testScript = testScript
    self.testScriptFile = testScriptFile
    self.imageId = imageId
    self.inputParameters = inputParameters
    self.packageDescriptor = packageDescriptor
    self.__attrs_post_init__()

base

CreatedByUser (SharedBase)

__init__(self, id, name) special

Method generated by attrs for class CreatedByUser.

Source code in aqueduct/models/base.py
def __init__(self, id, name):
    self.id = id
    self.name = name

SharedBase

__init__(self, id, name) special

Method generated by attrs for class SharedBase.

Source code in aqueduct/models/base.py
def __init__(self, id, name):
    self.id = id
    self.name = name

dashboard

Dashboard

__attrs_init__(self, workspaces, timelineEnabled, minTimelineDate, maxTimelineDate, createdDate, modifiedDate, uid, version, id, name, disabled, description=None, allowed=[], permissions={}, createdByUser={}, modifiedByUser={}, timelineFilters={}, items=[]) special

Method generated by attrs for class Dashboard.

Source code in aqueduct/models/dashboard.py
def __attrs_init__(self, workspaces, timelineEnabled, minTimelineDate, maxTimelineDate, createdDate, modifiedDate, uid, version, id, name, disabled, description=attr_dict['description'].default, allowed=attr_dict['allowed'].default, permissions=attr_dict['permissions'].default, createdByUser=attr_dict['createdByUser'].default, modifiedByUser=attr_dict['modifiedByUser'].default, timelineFilters=attr_dict['timelineFilters'].default, items=attr_dict['items'].default):
    self.workspaces = workspaces
    self.timelineEnabled = timelineEnabled
    self.minTimelineDate = minTimelineDate
    self.maxTimelineDate = maxTimelineDate
    self.createdDate = createdDate
    self.modifiedDate = modifiedDate
    self.uid = uid
    self.version = version
    self.id = id
    self.name = name
    self.disabled = disabled
    self.description = description
    self.allowed = allowed
    self.permissions = permissions
    self.createdByUser = createdByUser
    self.modifiedByUser = modifiedByUser
    self.timelineFilters = timelineFilters
    self.items = items
    self.__attrs_post_init__()

ReportItems

__init__(self, cardType, id, name, row, col, sizeX, sizeY, reportId=NOTHING, autoRefreshMilliseconds=NOTHING, description=NOTHING, measure=NOTHING, dateFilter=NOTHING, appsFilter=NOTHING, colorScheme=NOTHING, src=NOTHING) special

Method generated by attrs for class ReportItems.

Source code in aqueduct/models/dashboard.py
def __init__(self, cardType, id, name, row, col, sizeX, sizeY, reportId=NOTHING, autoRefreshMilliseconds=NOTHING, description=NOTHING, measure=NOTHING, dateFilter=NOTHING, appsFilter=NOTHING, colorScheme=NOTHING, src=NOTHING):
    self.cardType = cardType
    self.id = id
    self.name = name
    self.row = row
    self.col = col
    self.sizeX = sizeX
    self.sizeY = sizeY
    if reportId is not NOTHING:
        self.reportId = reportId
    else:
        self.reportId = __attr_factory_reportId()
    if autoRefreshMilliseconds is not NOTHING:
        self.autoRefreshMilliseconds = autoRefreshMilliseconds
    else:
        self.autoRefreshMilliseconds = __attr_factory_autoRefreshMilliseconds()
    if description is not NOTHING:
        self.description = description
    else:
        self.description = __attr_factory_description()
    if measure is not NOTHING:
        self.measure = measure
    else:
        self.measure = __attr_factory_measure()
    if dateFilter is not NOTHING:
        self.dateFilter = dateFilter
    else:
        self.dateFilter = __attr_factory_dateFilter()
    if appsFilter is not NOTHING:
        self.appsFilter = appsFilter
    else:
        self.appsFilter = __attr_factory_appsFilter()
    if colorScheme is not NOTHING:
        self.colorScheme = colorScheme
    else:
        self.colorScheme = __attr_factory_colorScheme()
    if src is not NOTHING:
        self.src = src
    else:
        self.src = __attr_factory_src()

fields special

attachment

AttachmentField (BaseField)

__init__(self, name, id, key, maxSize, fieldType, required, readOnly, supportsMultipleOutputMappings) special

Method generated by attrs for class AttachmentField.

Source code in aqueduct/models/fields/attachment.py
def __init__(self, name, id, key, maxSize, fieldType, required, readOnly, supportsMultipleOutputMappings):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('maxSize', maxSize)
    _setattr('fieldType', fieldType)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
__setattr__(self, name, val) special

Method generated by attrs for class AttachmentField.

Source code in aqueduct/models/fields/attachment.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

base

BaseField

__init__(self, name, id, key) special

Method generated by attrs for class BaseField.

Source code in aqueduct/models/fields/base.py
def __init__(self, name, id, key):
    self.name = name
    self.id = id
    self.key = key

comments

CommentsField (BaseField)

__init__(self, name, id, key, fieldType, supportsMultipleOutputMappings=None, required=None, readOnly=None) special

Method generated by attrs for class CommentsField.

Source code in aqueduct/models/fields/comments.py
def __init__(self, name, id, key, fieldType, supportsMultipleOutputMappings=attr_dict['supportsMultipleOutputMappings'].default, required=attr_dict['required'].default, readOnly=attr_dict['readOnly'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('fieldType', fieldType)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
__setattr__(self, name, val) special

Method generated by attrs for class CommentsField.

Source code in aqueduct/models/fields/comments.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

datetime

BaseDateTimeFieldType (BaseField)

__init__(self, name, id, key, defaultValueType, calculatedDiff, fieldType, required, readOnly, supportsMultipleOutputMappings) special

Method generated by attrs for class BaseDateTimeFieldType.

Source code in aqueduct/models/fields/datetime.py
def __init__(self, name, id, key, defaultValueType, calculatedDiff, fieldType, required, readOnly, supportsMultipleOutputMappings):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('defaultValueType', defaultValueType)
    _setattr('calculatedDiff', calculatedDiff)
    _setattr('fieldType', fieldType)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
__setattr__(self, name, val) special

Method generated by attrs for class BaseDateTimeFieldType.

Source code in aqueduct/models/fields/datetime.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

DateField (BaseDateTimeFieldType)

__init__(self, name, id, key, defaultValueType, calculatedDiff, fieldType, required, readOnly, supportsMultipleOutputMappings, inputType) special

Method generated by attrs for class DateField.

Source code in aqueduct/models/fields/datetime.py
def __init__(self, name, id, key, defaultValueType, calculatedDiff, fieldType, required, readOnly, supportsMultipleOutputMappings, inputType):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('defaultValueType', defaultValueType)
    _setattr('calculatedDiff', calculatedDiff)
    _setattr('fieldType', fieldType)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('inputType', inputType)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)
__setattr__(self, name, val) special

Method generated by attrs for class DateField.

Source code in aqueduct/models/fields/datetime.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

DateTimeField (BaseDateTimeFieldType)

__init__(self, name, id, key, defaultValueType, calculatedDiff, fieldType, supportsMultipleOutputMappings, inputType, futurePastType=None, futurePastValue=None, required=None, readOnly=None) special

Method generated by attrs for class DateTimeField.

Source code in aqueduct/models/fields/datetime.py
def __init__(self, name, id, key, defaultValueType, calculatedDiff, fieldType, supportsMultipleOutputMappings, inputType, futurePastType=attr_dict['futurePastType'].default, futurePastValue=attr_dict['futurePastValue'].default, required=attr_dict['required'].default, readOnly=attr_dict['readOnly'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('defaultValueType', defaultValueType)
    _setattr('calculatedDiff', calculatedDiff)
    _setattr('fieldType', fieldType)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('inputType', inputType)
    _setattr('futurePastType', futurePastType)
    _setattr('futurePastValue', futurePastValue)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)
__setattr__(self, name, val) special

Method generated by attrs for class DateTimeField.

Source code in aqueduct/models/fields/datetime.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

FirstCreatedField (BaseDateTimeFieldType)

__init__(self, name, id, key, defaultValueType, calculatedDiff, fieldType, required, readOnly, supportsMultipleOutputMappings, inputType) special

Method generated by attrs for class FirstCreatedField.

Source code in aqueduct/models/fields/datetime.py
def __init__(self, name, id, key, defaultValueType, calculatedDiff, fieldType, required, readOnly, supportsMultipleOutputMappings, inputType):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('defaultValueType', defaultValueType)
    _setattr('calculatedDiff', calculatedDiff)
    _setattr('fieldType', fieldType)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('inputType', inputType)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)
__setattr__(self, name, val) special

Method generated by attrs for class FirstCreatedField.

Source code in aqueduct/models/fields/datetime.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

LastUpdatedField (BaseDateTimeFieldType)

__init__(self, name, id, key, defaultValueType, calculatedDiff, fieldType, required, readOnly, supportsMultipleOutputMappings, inputType) special

Method generated by attrs for class LastUpdatedField.

Source code in aqueduct/models/fields/datetime.py
def __init__(self, name, id, key, defaultValueType, calculatedDiff, fieldType, required, readOnly, supportsMultipleOutputMappings, inputType):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('defaultValueType', defaultValueType)
    _setattr('calculatedDiff', calculatedDiff)
    _setattr('fieldType', fieldType)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('inputType', inputType)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)
__setattr__(self, name, val) special

Method generated by attrs for class LastUpdatedField.

Source code in aqueduct/models/fields/datetime.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

TimeField (BaseDateTimeFieldType)

__init__(self, name, id, key, defaultValueType, calculatedDiff, fieldType, required, readOnly, supportsMultipleOutputMappings, inputType) special

Method generated by attrs for class TimeField.

Source code in aqueduct/models/fields/datetime.py
def __init__(self, name, id, key, defaultValueType, calculatedDiff, fieldType, required, readOnly, supportsMultipleOutputMappings, inputType):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('defaultValueType', defaultValueType)
    _setattr('calculatedDiff', calculatedDiff)
    _setattr('fieldType', fieldType)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('inputType', inputType)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)
__setattr__(self, name, val) special

Method generated by attrs for class TimeField.

Source code in aqueduct/models/fields/datetime.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

TimespanField (BaseDateTimeFieldType)

__init__(self, name, id, key, defaultValueType, calculatedDiff, fieldType, required, readOnly, supportsMultipleOutputMappings, inputType) special

Method generated by attrs for class TimespanField.

Source code in aqueduct/models/fields/datetime.py
def __init__(self, name, id, key, defaultValueType, calculatedDiff, fieldType, required, readOnly, supportsMultipleOutputMappings, inputType):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('defaultValueType', defaultValueType)
    _setattr('calculatedDiff', calculatedDiff)
    _setattr('fieldType', fieldType)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('inputType', inputType)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)
__setattr__(self, name, val) special

Method generated by attrs for class TimespanField.

Source code in aqueduct/models/fields/datetime.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

history

HistoryField (BaseField)

__init__(self, name, id, key, fieldType, required, readOnly, supportsMultipleOutputMappings) special

Method generated by attrs for class HistoryField.

Source code in aqueduct/models/fields/history.py
def __init__(self, name, id, key, fieldType, required, readOnly, supportsMultipleOutputMappings):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('fieldType', fieldType)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
__setattr__(self, name, val) special

Method generated by attrs for class HistoryField.

Source code in aqueduct/models/fields/history.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

list

BaseListFieldType (BaseField)

__init__(self, name, id, key, itemLengthType, itemStep, searchPath, searchPathIsArray, searchPathCollectionExtension, fieldType, required, readOnly, supportsMultipleOutputMappings) special

Method generated by attrs for class BaseListFieldType.

Source code in aqueduct/models/fields/list.py
def __init__(self, name, id, key, itemLengthType, itemStep, searchPath, searchPathIsArray, searchPathCollectionExtension, fieldType, required, readOnly, supportsMultipleOutputMappings):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('itemLengthType', itemLengthType)
    _setattr('itemStep', itemStep)
    _setattr('searchPath', searchPath)
    _setattr('searchPathIsArray', searchPathIsArray)
    _setattr('searchPathCollectionExtension', searchPathCollectionExtension)
    _setattr('fieldType', fieldType)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
__setattr__(self, name, val) special

Method generated by attrs for class BaseListFieldType.

Source code in aqueduct/models/fields/list.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

NumericListField (BaseListFieldType)

__init__(self, name, id, key, itemLengthType, itemStep, searchPath, searchPathIsArray, searchPathCollectionExtension, fieldType, required, readOnly, supportsMultipleOutputMappings, inputType) special

Method generated by attrs for class NumericListField.

Source code in aqueduct/models/fields/list.py
def __init__(self, name, id, key, itemLengthType, itemStep, searchPath, searchPathIsArray, searchPathCollectionExtension, fieldType, required, readOnly, supportsMultipleOutputMappings, inputType):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('itemLengthType', itemLengthType)
    _setattr('itemStep', itemStep)
    _setattr('searchPath', searchPath)
    _setattr('searchPathIsArray', searchPathIsArray)
    _setattr('searchPathCollectionExtension', searchPathCollectionExtension)
    _setattr('fieldType', fieldType)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('inputType', inputType)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)
__setattr__(self, name, val) special

Method generated by attrs for class NumericListField.

Source code in aqueduct/models/fields/list.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

TextListField (BaseListFieldType)

__init__(self, name, id, key, itemLengthType, itemStep, searchPath, searchPathIsArray, searchPathCollectionExtension, fieldType, required, readOnly, supportsMultipleOutputMappings, inputType) special

Method generated by attrs for class TextListField.

Source code in aqueduct/models/fields/list.py
def __init__(self, name, id, key, itemLengthType, itemStep, searchPath, searchPathIsArray, searchPathCollectionExtension, fieldType, required, readOnly, supportsMultipleOutputMappings, inputType):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('itemLengthType', itemLengthType)
    _setattr('itemStep', itemStep)
    _setattr('searchPath', searchPath)
    _setattr('searchPathIsArray', searchPathIsArray)
    _setattr('searchPathCollectionExtension', searchPathCollectionExtension)
    _setattr('fieldType', fieldType)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('inputType', inputType)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)
__setattr__(self, name, val) special

Method generated by attrs for class TextListField.

Source code in aqueduct/models/fields/list.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

numeric

NumericField (BaseField)

__init__(self, name, id, key, step, unique, prefix, suffix, format, fieldType, required, readOnly, supportsMultipleOutputMappings) special

Method generated by attrs for class NumericField.

Source code in aqueduct/models/fields/numeric.py
def __init__(self, name, id, key, step, unique, prefix, suffix, format, fieldType, required, readOnly, supportsMultipleOutputMappings):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('step', step)
    _setattr('unique', unique)
    _setattr('prefix', prefix)
    _setattr('suffix', suffix)
    _setattr('format', format)
    _setattr('fieldType', fieldType)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
__setattr__(self, name, val) special

Method generated by attrs for class NumericField.

Source code in aqueduct/models/fields/numeric.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

reference

BaseReferenceFieldType (BaseField)

__init__(self, name, id, key, targetId, columns, canAdd, createBackreference, fieldType, required, readOnly, supportsMultipleOutputMappings) special

Method generated by attrs for class BaseReferenceFieldType.

Source code in aqueduct/models/fields/reference.py
def __init__(self, name, id, key, targetId, columns, canAdd, createBackreference, fieldType, required, readOnly, supportsMultipleOutputMappings):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('targetId', targetId)
    _setattr('columns', columns)
    _setattr('canAdd', canAdd)
    _setattr('createBackreference', createBackreference)
    _setattr('fieldType', fieldType)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
__setattr__(self, name, val) special

Method generated by attrs for class BaseReferenceFieldType.

Source code in aqueduct/models/fields/reference.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

GridReferenceField (BaseReferenceFieldType)

__init__(self, name, id, key, targetId, columns, canAdd, createBackreference, fieldType, required, readOnly, supportsMultipleOutputMappings, controlType, selectionType) special

Method generated by attrs for class GridReferenceField.

Source code in aqueduct/models/fields/reference.py
def __init__(self, name, id, key, targetId, columns, canAdd, createBackreference, fieldType, required, readOnly, supportsMultipleOutputMappings, controlType, selectionType):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('targetId', targetId)
    _setattr('columns', columns)
    _setattr('canAdd', canAdd)
    _setattr('createBackreference', createBackreference)
    _setattr('fieldType', fieldType)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('controlType', controlType)
    _setattr('selectionType', selectionType)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_controlType(self, __attr_controlType, self.controlType)
        __attr_validator_selectionType(self, __attr_selectionType, self.selectionType)
__setattr__(self, name, val) special

Method generated by attrs for class GridReferenceField.

Source code in aqueduct/models/fields/reference.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

MultiSelectReferenceField (BaseReferenceFieldType)

__init__(self, name, id, key, targetId, columns, canAdd, createBackreference, fieldType, required, readOnly, supportsMultipleOutputMappings, controlType, selectionType) special

Method generated by attrs for class MultiSelectReferenceField.

Source code in aqueduct/models/fields/reference.py
def __init__(self, name, id, key, targetId, columns, canAdd, createBackreference, fieldType, required, readOnly, supportsMultipleOutputMappings, controlType, selectionType):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('targetId', targetId)
    _setattr('columns', columns)
    _setattr('canAdd', canAdd)
    _setattr('createBackreference', createBackreference)
    _setattr('fieldType', fieldType)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('controlType', controlType)
    _setattr('selectionType', selectionType)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_controlType(self, __attr_controlType, self.controlType)
        __attr_validator_selectionType(self, __attr_selectionType, self.selectionType)
__setattr__(self, name, val) special

Method generated by attrs for class MultiSelectReferenceField.

Source code in aqueduct/models/fields/reference.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

SingleSelectReferenceField (BaseReferenceFieldType)

__init__(self, name, id, key, targetId, columns, canAdd, createBackreference, fieldType, required, readOnly, supportsMultipleOutputMappings, controlType, selectionType) special

Method generated by attrs for class SingleSelectReferenceField.

Source code in aqueduct/models/fields/reference.py
def __init__(self, name, id, key, targetId, columns, canAdd, createBackreference, fieldType, required, readOnly, supportsMultipleOutputMappings, controlType, selectionType):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('targetId', targetId)
    _setattr('columns', columns)
    _setattr('canAdd', canAdd)
    _setattr('createBackreference', createBackreference)
    _setattr('fieldType', fieldType)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('controlType', controlType)
    _setattr('selectionType', selectionType)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_controlType(self, __attr_controlType, self.controlType)
        __attr_validator_selectionType(self, __attr_selectionType, self.selectionType)
__setattr__(self, name, val) special

Method generated by attrs for class SingleSelectReferenceField.

Source code in aqueduct/models/fields/reference.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

text

BaseTextFieldType (BaseField)

__init__(self, name, id, key, lengthType, visualize, visualizeMode, required, readOnly, supportsMultipleOutputMappings, fieldType) special

Method generated by attrs for class BaseTextFieldType.

Source code in aqueduct/models/fields/text.py
def __init__(self, name, id, key, lengthType, visualize, visualizeMode, required, readOnly, supportsMultipleOutputMappings, fieldType):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('lengthType', lengthType)
    _setattr('visualize', visualize)
    _setattr('visualizeMode', visualizeMode)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('fieldType', fieldType)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
__setattr__(self, name, val) special

Method generated by attrs for class BaseTextFieldType.

Source code in aqueduct/models/fields/text.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

EmailField (BaseTextFieldType)

__init__(self, name, id, key, lengthType, visualize, visualizeMode, required, readOnly, supportsMultipleOutputMappings, fieldType, inputType, prefix=None, suffix=None, placeholder=None, unique=None) special

Method generated by attrs for class EmailField.

Source code in aqueduct/models/fields/text.py
def __init__(self, name, id, key, lengthType, visualize, visualizeMode, required, readOnly, supportsMultipleOutputMappings, fieldType, inputType, prefix=attr_dict['prefix'].default, suffix=attr_dict['suffix'].default, placeholder=attr_dict['placeholder'].default, unique=attr_dict['unique'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('lengthType', lengthType)
    _setattr('visualize', visualize)
    _setattr('visualizeMode', visualizeMode)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('fieldType', fieldType)
    _setattr('inputType', inputType)
    _setattr('prefix', prefix)
    _setattr('suffix', suffix)
    _setattr('placeholder', placeholder)
    _setattr('unique', unique)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)
__setattr__(self, name, val) special

Method generated by attrs for class EmailField.

Source code in aqueduct/models/fields/text.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

IPField (BaseTextFieldType)

__init__(self, name, id, key, lengthType, visualize, visualizeMode, required, readOnly, supportsMultipleOutputMappings, fieldType, inputType, prefix=None, suffix=None, placeholder=None, unique=None) special

Method generated by attrs for class IPField.

Source code in aqueduct/models/fields/text.py
def __init__(self, name, id, key, lengthType, visualize, visualizeMode, required, readOnly, supportsMultipleOutputMappings, fieldType, inputType, prefix=attr_dict['prefix'].default, suffix=attr_dict['suffix'].default, placeholder=attr_dict['placeholder'].default, unique=attr_dict['unique'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('lengthType', lengthType)
    _setattr('visualize', visualize)
    _setattr('visualizeMode', visualizeMode)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('fieldType', fieldType)
    _setattr('inputType', inputType)
    _setattr('prefix', prefix)
    _setattr('suffix', suffix)
    _setattr('placeholder', placeholder)
    _setattr('unique', unique)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)
__setattr__(self, name, val) special

Method generated by attrs for class IPField.

Source code in aqueduct/models/fields/text.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

JSONField (BaseTextFieldType)

__init__(self, name, id, key, lengthType, visualize, visualizeMode, required, readOnly, supportsMultipleOutputMappings, fieldType, inputType, prefix=None, suffix=None, placeholder=None, unique=None) special

Method generated by attrs for class JSONField.

Source code in aqueduct/models/fields/text.py
def __init__(self, name, id, key, lengthType, visualize, visualizeMode, required, readOnly, supportsMultipleOutputMappings, fieldType, inputType, prefix=attr_dict['prefix'].default, suffix=attr_dict['suffix'].default, placeholder=attr_dict['placeholder'].default, unique=attr_dict['unique'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('lengthType', lengthType)
    _setattr('visualize', visualize)
    _setattr('visualizeMode', visualizeMode)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('fieldType', fieldType)
    _setattr('inputType', inputType)
    _setattr('prefix', prefix)
    _setattr('suffix', suffix)
    _setattr('placeholder', placeholder)
    _setattr('unique', unique)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)
__setattr__(self, name, val) special

Method generated by attrs for class JSONField.

Source code in aqueduct/models/fields/text.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

MultilineField (BaseTextFieldType)

__init__(self, name, id, key, lengthType, visualize, visualizeMode, required, readOnly, supportsMultipleOutputMappings, fieldType, inputType, prefix=None, suffix=None, placeholder=None, unique=None) special

Method generated by attrs for class MultilineField.

Source code in aqueduct/models/fields/text.py
def __init__(self, name, id, key, lengthType, visualize, visualizeMode, required, readOnly, supportsMultipleOutputMappings, fieldType, inputType, prefix=attr_dict['prefix'].default, suffix=attr_dict['suffix'].default, placeholder=attr_dict['placeholder'].default, unique=attr_dict['unique'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('lengthType', lengthType)
    _setattr('visualize', visualize)
    _setattr('visualizeMode', visualizeMode)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('fieldType', fieldType)
    _setattr('inputType', inputType)
    _setattr('prefix', prefix)
    _setattr('suffix', suffix)
    _setattr('placeholder', placeholder)
    _setattr('unique', unique)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)
__setattr__(self, name, val) special

Method generated by attrs for class MultilineField.

Source code in aqueduct/models/fields/text.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

RichTextField (BaseTextFieldType)

__init__(self, name, id, key, lengthType, visualize, visualizeMode, required, readOnly, supportsMultipleOutputMappings, fieldType, inputType, prefix=None, suffix=None, placeholder=None, unique=None) special

Method generated by attrs for class RichTextField.

Source code in aqueduct/models/fields/text.py
def __init__(self, name, id, key, lengthType, visualize, visualizeMode, required, readOnly, supportsMultipleOutputMappings, fieldType, inputType, prefix=attr_dict['prefix'].default, suffix=attr_dict['suffix'].default, placeholder=attr_dict['placeholder'].default, unique=attr_dict['unique'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('lengthType', lengthType)
    _setattr('visualize', visualize)
    _setattr('visualizeMode', visualizeMode)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('fieldType', fieldType)
    _setattr('inputType', inputType)
    _setattr('prefix', prefix)
    _setattr('suffix', suffix)
    _setattr('placeholder', placeholder)
    _setattr('unique', unique)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)
__setattr__(self, name, val) special

Method generated by attrs for class RichTextField.

Source code in aqueduct/models/fields/text.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

TelephoneField (BaseTextFieldType)

__init__(self, name, id, key, lengthType, visualize, visualizeMode, required, readOnly, supportsMultipleOutputMappings, fieldType, inputType, prefix=None, suffix=None, placeholder=None, unique=None) special

Method generated by attrs for class TelephoneField.

Source code in aqueduct/models/fields/text.py
def __init__(self, name, id, key, lengthType, visualize, visualizeMode, required, readOnly, supportsMultipleOutputMappings, fieldType, inputType, prefix=attr_dict['prefix'].default, suffix=attr_dict['suffix'].default, placeholder=attr_dict['placeholder'].default, unique=attr_dict['unique'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('lengthType', lengthType)
    _setattr('visualize', visualize)
    _setattr('visualizeMode', visualizeMode)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('fieldType', fieldType)
    _setattr('inputType', inputType)
    _setattr('prefix', prefix)
    _setattr('suffix', suffix)
    _setattr('placeholder', placeholder)
    _setattr('unique', unique)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)
__setattr__(self, name, val) special

Method generated by attrs for class TelephoneField.

Source code in aqueduct/models/fields/text.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

TextField (BaseTextFieldType)

__init__(self, name, id, key, lengthType, visualize, visualizeMode, required, readOnly, supportsMultipleOutputMappings, fieldType, inputType, prefix=None, suffix=None, placeholder=None, unique=None) special

Method generated by attrs for class TextField.

Source code in aqueduct/models/fields/text.py
def __init__(self, name, id, key, lengthType, visualize, visualizeMode, required, readOnly, supportsMultipleOutputMappings, fieldType, inputType, prefix=attr_dict['prefix'].default, suffix=attr_dict['suffix'].default, placeholder=attr_dict['placeholder'].default, unique=attr_dict['unique'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('lengthType', lengthType)
    _setattr('visualize', visualize)
    _setattr('visualizeMode', visualizeMode)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('fieldType', fieldType)
    _setattr('inputType', inputType)
    _setattr('prefix', prefix)
    _setattr('suffix', suffix)
    _setattr('placeholder', placeholder)
    _setattr('unique', unique)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)
__setattr__(self, name, val) special

Method generated by attrs for class TextField.

Source code in aqueduct/models/fields/text.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

UrlField (BaseTextFieldType)

__init__(self, name, id, key, lengthType, visualize, visualizeMode, required, readOnly, supportsMultipleOutputMappings, fieldType, inputType, prefix=None, suffix=None, placeholder=None, unique=None) special

Method generated by attrs for class UrlField.

Source code in aqueduct/models/fields/text.py
def __init__(self, name, id, key, lengthType, visualize, visualizeMode, required, readOnly, supportsMultipleOutputMappings, fieldType, inputType, prefix=attr_dict['prefix'].default, suffix=attr_dict['suffix'].default, placeholder=attr_dict['placeholder'].default, unique=attr_dict['unique'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('lengthType', lengthType)
    _setattr('visualize', visualize)
    _setattr('visualizeMode', visualizeMode)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('fieldType', fieldType)
    _setattr('inputType', inputType)
    _setattr('prefix', prefix)
    _setattr('suffix', suffix)
    _setattr('placeholder', placeholder)
    _setattr('unique', unique)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)
__setattr__(self, name, val) special

Method generated by attrs for class UrlField.

Source code in aqueduct/models/fields/text.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

tracking

TrackingField (BaseField)

__init__(self, name, id, key, prefix, fieldType, readOnly, supportsMultipleOutputMappings) special

Method generated by attrs for class TrackingField.

Source code in aqueduct/models/fields/tracking.py
def __init__(self, name, id, key, prefix, fieldType, readOnly, supportsMultipleOutputMappings):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('prefix', prefix)
    _setattr('fieldType', fieldType)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
__setattr__(self, name, val) special

Method generated by attrs for class TrackingField.

Source code in aqueduct/models/fields/tracking.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

usergroup

BaseUserGroupFieldType (BaseField)

__init__(self, name, id, key, showAllUsers, showAllGroups, members, defaults, searchPath, searchPathIsArray, sortPath, fieldType, supportsMultipleOutputMappings) special

Method generated by attrs for class BaseUserGroupFieldType.

Source code in aqueduct/models/fields/usergroup.py
def __init__(self, name, id, key, showAllUsers, showAllGroups, members, defaults, searchPath, searchPathIsArray, sortPath, fieldType, supportsMultipleOutputMappings):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('showAllUsers', showAllUsers)
    _setattr('showAllGroups', showAllGroups)
    _setattr('members', members)
    _setattr('defaults', defaults)
    _setattr('searchPath', searchPath)
    _setattr('searchPathIsArray', searchPathIsArray)
    _setattr('sortPath', sortPath)
    _setattr('fieldType', fieldType)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
__setattr__(self, name, val) special

Method generated by attrs for class BaseUserGroupFieldType.

Source code in aqueduct/models/fields/usergroup.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

CreatedByField (BaseUserGroupFieldType)

__init__(self, name, id, key, showAllUsers, showAllGroups, members, defaults, searchPath, searchPathIsArray, sortPath, fieldType, supportsMultipleOutputMappings, inputType, controlType, selectionType, searchPathCollectionExtension=None, required=None, readOnly=None, reverseValueMap={}) special

Method generated by attrs for class CreatedByField.

Source code in aqueduct/models/fields/usergroup.py
def __init__(self, name, id, key, showAllUsers, showAllGroups, members, defaults, searchPath, searchPathIsArray, sortPath, fieldType, supportsMultipleOutputMappings, inputType, controlType, selectionType, searchPathCollectionExtension=attr_dict['searchPathCollectionExtension'].default, required=attr_dict['required'].default, readOnly=attr_dict['readOnly'].default, reverseValueMap=attr_dict['reverseValueMap'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('showAllUsers', showAllUsers)
    _setattr('showAllGroups', showAllGroups)
    _setattr('members', members)
    _setattr('defaults', defaults)
    _setattr('searchPath', searchPath)
    _setattr('searchPathIsArray', searchPathIsArray)
    _setattr('sortPath', sortPath)
    _setattr('fieldType', fieldType)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('inputType', inputType)
    _setattr('controlType', controlType)
    _setattr('selectionType', selectionType)
    _setattr('searchPathCollectionExtension', searchPathCollectionExtension)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('reverseValueMap', reverseValueMap)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)
        __attr_validator_controlType(self, __attr_controlType, self.controlType)
        __attr_validator_selectionType(self, __attr_selectionType, self.selectionType)
__setattr__(self, name, val) special

Method generated by attrs for class CreatedByField.

Source code in aqueduct/models/fields/usergroup.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

LastUpdatedByField (BaseUserGroupFieldType)

__init__(self, name, id, key, showAllUsers, showAllGroups, members, defaults, searchPath, searchPathIsArray, sortPath, fieldType, supportsMultipleOutputMappings, inputType, controlType, selectionType, searchPathCollectionExtension=None, required=None, readOnly=None, reverseValueMap={}) special

Method generated by attrs for class LastUpdatedByField.

Source code in aqueduct/models/fields/usergroup.py
def __init__(self, name, id, key, showAllUsers, showAllGroups, members, defaults, searchPath, searchPathIsArray, sortPath, fieldType, supportsMultipleOutputMappings, inputType, controlType, selectionType, searchPathCollectionExtension=attr_dict['searchPathCollectionExtension'].default, required=attr_dict['required'].default, readOnly=attr_dict['readOnly'].default, reverseValueMap=attr_dict['reverseValueMap'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('showAllUsers', showAllUsers)
    _setattr('showAllGroups', showAllGroups)
    _setattr('members', members)
    _setattr('defaults', defaults)
    _setattr('searchPath', searchPath)
    _setattr('searchPathIsArray', searchPathIsArray)
    _setattr('sortPath', sortPath)
    _setattr('fieldType', fieldType)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('inputType', inputType)
    _setattr('controlType', controlType)
    _setattr('selectionType', selectionType)
    _setattr('searchPathCollectionExtension', searchPathCollectionExtension)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('reverseValueMap', reverseValueMap)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)
        __attr_validator_controlType(self, __attr_controlType, self.controlType)
        __attr_validator_selectionType(self, __attr_selectionType, self.selectionType)
__setattr__(self, name, val) special

Method generated by attrs for class LastUpdatedByField.

Source code in aqueduct/models/fields/usergroup.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

UserGroupField (BaseUserGroupFieldType)

__init__(self, name, id, key, showAllUsers, showAllGroups, members, defaults, searchPath, searchPathIsArray, sortPath, fieldType, supportsMultipleOutputMappings, inputType, controlType, selectionType, searchPathCollectionExtension=None, required=None, readOnly=None) special

Method generated by attrs for class UserGroupField.

Source code in aqueduct/models/fields/usergroup.py
def __init__(self, name, id, key, showAllUsers, showAllGroups, members, defaults, searchPath, searchPathIsArray, sortPath, fieldType, supportsMultipleOutputMappings, inputType, controlType, selectionType, searchPathCollectionExtension=attr_dict['searchPathCollectionExtension'].default, required=attr_dict['required'].default, readOnly=attr_dict['readOnly'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('showAllUsers', showAllUsers)
    _setattr('showAllGroups', showAllGroups)
    _setattr('members', members)
    _setattr('defaults', defaults)
    _setattr('searchPath', searchPath)
    _setattr('searchPathIsArray', searchPathIsArray)
    _setattr('sortPath', sortPath)
    _setattr('fieldType', fieldType)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('inputType', inputType)
    _setattr('controlType', controlType)
    _setattr('selectionType', selectionType)
    _setattr('searchPathCollectionExtension', searchPathCollectionExtension)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)
        __attr_validator_controlType(self, __attr_controlType, self.controlType)
        __attr_validator_selectionType(self, __attr_selectionType, self.selectionType)
__setattr__(self, name, val) special

Method generated by attrs for class UserGroupField.

Source code in aqueduct/models/fields/usergroup.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

UsersGroupsField (BaseUserGroupFieldType)

__init__(self, name, id, key, showAllUsers, showAllGroups, members, defaults, searchPath, searchPathIsArray, sortPath, fieldType, supportsMultipleOutputMappings, inputType, controlType, selectionType, searchPathCollectionExtension=None, required=None, readOnly=None) special

Method generated by attrs for class UsersGroupsField.

Source code in aqueduct/models/fields/usergroup.py
def __init__(self, name, id, key, showAllUsers, showAllGroups, members, defaults, searchPath, searchPathIsArray, sortPath, fieldType, supportsMultipleOutputMappings, inputType, controlType, selectionType, searchPathCollectionExtension=attr_dict['searchPathCollectionExtension'].default, required=attr_dict['required'].default, readOnly=attr_dict['readOnly'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('showAllUsers', showAllUsers)
    _setattr('showAllGroups', showAllGroups)
    _setattr('members', members)
    _setattr('defaults', defaults)
    _setattr('searchPath', searchPath)
    _setattr('searchPathIsArray', searchPathIsArray)
    _setattr('sortPath', sortPath)
    _setattr('fieldType', fieldType)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('inputType', inputType)
    _setattr('controlType', controlType)
    _setattr('selectionType', selectionType)
    _setattr('searchPathCollectionExtension', searchPathCollectionExtension)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)
        __attr_validator_controlType(self, __attr_controlType, self.controlType)
        __attr_validator_selectionType(self, __attr_selectionType, self.selectionType)
__setattr__(self, name, val) special

Method generated by attrs for class UsersGroupsField.

Source code in aqueduct/models/fields/usergroup.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

valueslist

BaseFieldValuesListType

__init__(self, id, name, selected, description=None, otherText=None, otherTextDescription=None, otherTextDefaultValue=None, otherTextRequired=None) special

Method generated by attrs for class BaseFieldValuesListType.

Source code in aqueduct/models/fields/valueslist.py
def __init__(self, id, name, selected, description=attr_dict['description'].default, otherText=attr_dict['otherText'].default, otherTextDescription=attr_dict['otherTextDescription'].default, otherTextDefaultValue=attr_dict['otherTextDefaultValue'].default, otherTextRequired=attr_dict['otherTextRequired'].default):
    self.id = id
    self.name = name
    self.selected = selected
    self.description = description
    self.otherText = otherText
    self.otherTextDescription = otherTextDescription
    self.otherTextDefaultValue = otherTextDefaultValue
    self.otherTextRequired = otherTextRequired

BaseValuesListFieldType (BaseField)

__init__(self, name, id, key, valueMap, searchPath, searchPathIsArray, searchPathCollectionExtension, sortPath, fieldType, supportsMultipleOutputMappings) special

Method generated by attrs for class BaseValuesListFieldType.

Source code in aqueduct/models/fields/valueslist.py
def __init__(self, name, id, key, valueMap, searchPath, searchPathIsArray, searchPathCollectionExtension, sortPath, fieldType, supportsMultipleOutputMappings):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('valueMap', valueMap)
    _setattr('searchPath', searchPath)
    _setattr('searchPathIsArray', searchPathIsArray)
    _setattr('searchPathCollectionExtension', searchPathCollectionExtension)
    _setattr('sortPath', sortPath)
    _setattr('fieldType', fieldType)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
__setattr__(self, name, val) special

Method generated by attrs for class BaseValuesListFieldType.

Source code in aqueduct/models/fields/valueslist.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

CheckboxField (BaseValuesListFieldType)

__init__(self, name, id, key, valueMap, searchPath, searchPathIsArray, searchPathCollectionExtension, sortPath, fieldType, supportsMultipleOutputMappings, controlType, selectionType, values=[], required=None, readOnly=None) special

Method generated by attrs for class CheckboxField.

Source code in aqueduct/models/fields/valueslist.py
def __init__(self, name, id, key, valueMap, searchPath, searchPathIsArray, searchPathCollectionExtension, sortPath, fieldType, supportsMultipleOutputMappings, controlType, selectionType, values=attr_dict['values'].default, required=attr_dict['required'].default, readOnly=attr_dict['readOnly'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('valueMap', valueMap)
    _setattr('searchPath', searchPath)
    _setattr('searchPathIsArray', searchPathIsArray)
    _setattr('searchPathCollectionExtension', searchPathCollectionExtension)
    _setattr('sortPath', sortPath)
    _setattr('fieldType', fieldType)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('controlType', controlType)
    _setattr('selectionType', selectionType)
    _setattr('values', values)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_controlType(self, __attr_controlType, self.controlType)
        __attr_validator_selectionType(self, __attr_selectionType, self.selectionType)
__setattr__(self, name, val) special

Method generated by attrs for class CheckboxField.

Source code in aqueduct/models/fields/valueslist.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

MultiSelectField (BaseValuesListFieldType)

__init__(self, name, id, key, valueMap, searchPath, searchPathIsArray, searchPathCollectionExtension, sortPath, fieldType, supportsMultipleOutputMappings, controlType, selectionType, values=[], required=None, readOnly=None) special

Method generated by attrs for class MultiSelectField.

Source code in aqueduct/models/fields/valueslist.py
def __init__(self, name, id, key, valueMap, searchPath, searchPathIsArray, searchPathCollectionExtension, sortPath, fieldType, supportsMultipleOutputMappings, controlType, selectionType, values=attr_dict['values'].default, required=attr_dict['required'].default, readOnly=attr_dict['readOnly'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('valueMap', valueMap)
    _setattr('searchPath', searchPath)
    _setattr('searchPathIsArray', searchPathIsArray)
    _setattr('searchPathCollectionExtension', searchPathCollectionExtension)
    _setattr('sortPath', sortPath)
    _setattr('fieldType', fieldType)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('controlType', controlType)
    _setattr('selectionType', selectionType)
    _setattr('values', values)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_controlType(self, __attr_controlType, self.controlType)
        __attr_validator_selectionType(self, __attr_selectionType, self.selectionType)
__setattr__(self, name, val) special

Method generated by attrs for class MultiSelectField.

Source code in aqueduct/models/fields/valueslist.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

RadioButtonField (BaseValuesListFieldType)

__init__(self, name, id, key, valueMap, searchPath, searchPathIsArray, searchPathCollectionExtension, sortPath, fieldType, supportsMultipleOutputMappings, controlType, selectionType, values=[], required=None, readOnly=None) special

Method generated by attrs for class RadioButtonField.

Source code in aqueduct/models/fields/valueslist.py
def __init__(self, name, id, key, valueMap, searchPath, searchPathIsArray, searchPathCollectionExtension, sortPath, fieldType, supportsMultipleOutputMappings, controlType, selectionType, values=attr_dict['values'].default, required=attr_dict['required'].default, readOnly=attr_dict['readOnly'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('valueMap', valueMap)
    _setattr('searchPath', searchPath)
    _setattr('searchPathIsArray', searchPathIsArray)
    _setattr('searchPathCollectionExtension', searchPathCollectionExtension)
    _setattr('sortPath', sortPath)
    _setattr('fieldType', fieldType)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('controlType', controlType)
    _setattr('selectionType', selectionType)
    _setattr('values', values)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_controlType(self, __attr_controlType, self.controlType)
        __attr_validator_selectionType(self, __attr_selectionType, self.selectionType)
__setattr__(self, name, val) special

Method generated by attrs for class RadioButtonField.

Source code in aqueduct/models/fields/valueslist.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

SingleSelectField (BaseValuesListFieldType)

__init__(self, name, id, key, valueMap, searchPath, searchPathIsArray, searchPathCollectionExtension, sortPath, fieldType, supportsMultipleOutputMappings, controlType, selectionType, values=[], required=None, readOnly=None) special

Method generated by attrs for class SingleSelectField.

Source code in aqueduct/models/fields/valueslist.py
def __init__(self, name, id, key, valueMap, searchPath, searchPathIsArray, searchPathCollectionExtension, sortPath, fieldType, supportsMultipleOutputMappings, controlType, selectionType, values=attr_dict['values'].default, required=attr_dict['required'].default, readOnly=attr_dict['readOnly'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('valueMap', valueMap)
    _setattr('searchPath', searchPath)
    _setattr('searchPathIsArray', searchPathIsArray)
    _setattr('searchPathCollectionExtension', searchPathCollectionExtension)
    _setattr('sortPath', sortPath)
    _setattr('fieldType', fieldType)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('controlType', controlType)
    _setattr('selectionType', selectionType)
    _setattr('values', values)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_controlType(self, __attr_controlType, self.controlType)
        __attr_validator_selectionType(self, __attr_selectionType, self.selectionType)
__setattr__(self, name, val) special

Method generated by attrs for class SingleSelectField.

Source code in aqueduct/models/fields/valueslist.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

group

Group

A Swimlane Group object model

__attrs_init__(self, disabled, id, name, description='', createdByUser={}, createdDate='', modifiedByUser={}, modifiedDate='', permissions={}, roles=[], users=[], groups=[]) special

Method generated by attrs for class Group.

Source code in aqueduct/models/group.py
def __attrs_init__(self, disabled, id, name, description=attr_dict['description'].default, createdByUser=attr_dict['createdByUser'].default, createdDate=attr_dict['createdDate'].default, modifiedByUser=attr_dict['modifiedByUser'].default, modifiedDate=attr_dict['modifiedDate'].default, permissions=attr_dict['permissions'].default, roles=attr_dict['roles'].default, users=attr_dict['users'].default, groups=attr_dict['groups'].default):
    self.disabled = disabled
    self.id = id
    self.name = name
    self.description = description
    self.createdByUser = createdByUser
    self.createdDate = createdDate
    self.modifiedByUser = modifiedByUser
    self.modifiedDate = modifiedDate
    self.permissions = permissions
    self.roles = roles
    self.users = users
    self.groups = groups
    self.__attrs_post_init__()

package

Package

__attrs_init__(self, author, authorEmail, disabled, homePage, id, license, name, pythonVersion, requires, summary, version, fileId=None) special

Method generated by attrs for class Package.

Source code in aqueduct/models/package.py
def __attrs_init__(self, author, authorEmail, disabled, homePage, id, license, name, pythonVersion, requires, summary, version, fileId=attr_dict['fileId'].default):
    self.author = author
    self.authorEmail = authorEmail
    self.disabled = disabled
    self.homePage = homePage
    self.id = id
    self.license = license
    self.name = name
    self.pythonVersion = pythonVersion
    self.requires = requires
    self.summary = summary
    self.version = version
    self.fileId = fileId

plugin

ActionDescriptor

__attrs_init__(self, name, base64Image, description, pythonVersion, disabled, id, actionType, readonly, availableOutputTypes, modifiedDate, createdDate, imageId=None, scriptFile=None, version=None, script=None, licenses=[], packageDescriptor={}, pythonDependencies={}, inputParameters={}, availableOutputVariables={}, family=None, assetDependencyType=None, assetDependencyVersion=None) special

Method generated by attrs for class ActionDescriptor.

Source code in aqueduct/models/plugin.py
def __attrs_init__(self, name, base64Image, description, pythonVersion, disabled, id, actionType, readonly, availableOutputTypes, modifiedDate, createdDate, imageId=attr_dict['imageId'].default, scriptFile=attr_dict['scriptFile'].default, version=attr_dict['version'].default, script=attr_dict['script'].default, licenses=attr_dict['licenses'].default, packageDescriptor=attr_dict['packageDescriptor'].default, pythonDependencies=attr_dict['pythonDependencies'].default, inputParameters=attr_dict['inputParameters'].default, availableOutputVariables=attr_dict['availableOutputVariables'].default, family=attr_dict['family'].default, assetDependencyType=attr_dict['assetDependencyType'].default, assetDependencyVersion=attr_dict['assetDependencyVersion'].default):
    self.name = name
    self.base64Image = base64Image
    self.description = description
    self.pythonVersion = pythonVersion
    self.disabled = disabled
    self.id = id
    self.actionType = actionType
    self.readonly = readonly
    self.availableOutputTypes = availableOutputTypes
    self.modifiedDate = modifiedDate
    self.createdDate = createdDate
    self.imageId = imageId
    self.scriptFile = scriptFile
    self.version = version
    self.script = script
    self.licenses = licenses
    self.packageDescriptor = packageDescriptor
    self.pythonDependencies = pythonDependencies
    self.inputParameters = inputParameters
    self.availableOutputVariables = availableOutputVariables
    self.family = family
    self.assetDependencyType = assetDependencyType
    self.assetDependencyVersion = assetDependencyVersion
    self.__attrs_post_init__()

AssetDescriptor (BaseDescriptor)

__attrs_init__(self, name, base64Image, description, version, pythonVersion, disabled, id, type, testScript, testScriptFile, imageId, packageDescriptor={}, inputParameters={}, family=None) special

Method generated by attrs for class AssetDescriptor.

Source code in aqueduct/models/plugin.py
def __attrs_init__(self, name, base64Image, description, version, pythonVersion, disabled, id, type, testScript, testScriptFile, imageId, packageDescriptor=attr_dict['packageDescriptor'].default, inputParameters=attr_dict['inputParameters'].default, family=attr_dict['family'].default):
    self.name = name
    self.base64Image = base64Image
    self.description = description
    self.version = version
    self.pythonVersion = pythonVersion
    self.disabled = disabled
    self.id = id
    self.type = type
    self.testScript = testScript
    self.testScriptFile = testScriptFile
    self.imageId = imageId
    self.packageDescriptor = packageDescriptor
    self.inputParameters = inputParameters
    self.family = family

BaseDescriptor

__attrs_init__(self, name, base64Image, description, version, pythonVersion, disabled, id) special

Method generated by attrs for class BaseDescriptor.

Source code in aqueduct/models/plugin.py
def __attrs_init__(self, name, base64Image, description, version, pythonVersion, disabled, id):
    self.name = name
    self.base64Image = base64Image
    self.description = description
    self.version = version
    self.pythonVersion = pythonVersion
    self.disabled = disabled
    self.id = id

License

__attrs_init__(self, package, license) special

Method generated by attrs for class License.

Source code in aqueduct/models/plugin.py
def __attrs_init__(self, package, license):
    self.package = package
    self.license = license

PackageDescriptor (Plugin)

__attrs_init__(self, name, base64Image, description, version, pythonVersion, disabled, id, author, modifiedDate, createdDate, authorEmail, url, packages, fileId, isEmailBundle, vendor, product, readme, changeLog, supportedSwimlaneVersion=NOTHING, availableActionDescriptors=[], assetDescriptors=[], family=None) special

Method generated by attrs for class PackageDescriptor.

Source code in aqueduct/models/plugin.py
def __attrs_init__(self, name, base64Image, description, version, pythonVersion, disabled, id, author, modifiedDate, createdDate, authorEmail, url, packages, fileId, isEmailBundle, vendor, product, readme, changeLog, supportedSwimlaneVersion=NOTHING, availableActionDescriptors=attr_dict['availableActionDescriptors'].default, assetDescriptors=attr_dict['assetDescriptors'].default, family=attr_dict['family'].default):
    self.name = name
    self.base64Image = base64Image
    self.description = description
    self.version = version
    self.pythonVersion = pythonVersion
    self.disabled = disabled
    self.id = id
    self.author = author
    self.modifiedDate = modifiedDate
    self.createdDate = createdDate
    self.authorEmail = authorEmail
    self.url = url
    self.packages = packages
    self.fileId = fileId
    self.isEmailBundle = isEmailBundle
    self.vendor = vendor
    self.product = product
    self.readme = readme
    self.changeLog = changeLog
    if supportedSwimlaneVersion is not NOTHING:
        self.supportedSwimlaneVersion = supportedSwimlaneVersion
    else:
        self.supportedSwimlaneVersion = __attr_factory_supportedSwimlaneVersion()
    self.availableActionDescriptors = availableActionDescriptors
    self.assetDescriptors = assetDescriptors
    self.family = family
    self.__attrs_post_init__()

PackageDescriptor2

__attrs_init__(self, disabled, id, isEmailBundle, modifiedDate, createdDate, name=NOTHING, base64Image=NOTHING, description=NOTHING, version=NOTHING, pythonVersion=NOTHING, author=NOTHING, author_email=NOTHING, supported_swimlane_version=NOTHING, url=NOTHING, packages=NOTHING, fileId=NOTHING, vendor=NOTHING, product=NOTHING, readme=None, changeLog=None, family=None) special

Method generated by attrs for class PackageDescriptor2.

Source code in aqueduct/models/plugin.py
def __attrs_init__(self, disabled, id, isEmailBundle, modifiedDate, createdDate, name=NOTHING, base64Image=NOTHING, description=NOTHING, version=NOTHING, pythonVersion=NOTHING, author=NOTHING, author_email=NOTHING, supported_swimlane_version=NOTHING, url=NOTHING, packages=NOTHING, fileId=NOTHING, vendor=NOTHING, product=NOTHING, readme=attr_dict['readme'].default, changeLog=attr_dict['changeLog'].default, family=attr_dict['family'].default):
    self.disabled = disabled
    self.id = id
    self.isEmailBundle = isEmailBundle
    self.modifiedDate = modifiedDate
    self.createdDate = createdDate
    if name is not NOTHING:
        self.name = name
    else:
        self.name = __attr_factory_name()
    if base64Image is not NOTHING:
        self.base64Image = base64Image
    else:
        self.base64Image = __attr_factory_base64Image()
    if description is not NOTHING:
        self.description = description
    else:
        self.description = __attr_factory_description()
    if version is not NOTHING:
        self.version = version
    else:
        self.version = __attr_factory_version()
    if pythonVersion is not NOTHING:
        self.pythonVersion = pythonVersion
    else:
        self.pythonVersion = __attr_factory_pythonVersion()
    if author is not NOTHING:
        self.author = author
    else:
        self.author = __attr_factory_author()
    if author_email is not NOTHING:
        self.author_email = author_email
    else:
        self.author_email = __attr_factory_author_email()
    if supported_swimlane_version is not NOTHING:
        self.supported_swimlane_version = supported_swimlane_version
    else:
        self.supported_swimlane_version = __attr_factory_supported_swimlane_version()
    if url is not NOTHING:
        self.url = url
    else:
        self.url = __attr_factory_url()
    if packages is not NOTHING:
        self.packages = packages
    else:
        self.packages = __attr_factory_packages()
    if fileId is not NOTHING:
        self.fileId = fileId
    else:
        self.fileId = __attr_factory_fileId()
    if vendor is not NOTHING:
        self.vendor = vendor
    else:
        self.vendor = __attr_factory_vendor()
    if product is not NOTHING:
        self.product = product
    else:
        self.product = __attr_factory_product()
    self.readme = readme
    self.changeLog = changeLog
    self.family = family

Plugin (BaseDescriptor)

__attrs_init__(self, name, base64Image, description, version, pythonVersion, disabled, id, author, modifiedDate, createdDate, authorEmail, url, packages, fileId, isEmailBundle, vendor, product, readme, changeLog, supportedSwimlaneVersion=NOTHING, availableActionDescriptors=[], assetDescriptors=[], family=None) special

Method generated by attrs for class Plugin.

Source code in aqueduct/models/plugin.py
def __attrs_init__(self, name, base64Image, description, version, pythonVersion, disabled, id, author, modifiedDate, createdDate, authorEmail, url, packages, fileId, isEmailBundle, vendor, product, readme, changeLog, supportedSwimlaneVersion=NOTHING, availableActionDescriptors=attr_dict['availableActionDescriptors'].default, assetDescriptors=attr_dict['assetDescriptors'].default, family=attr_dict['family'].default):
    self.name = name
    self.base64Image = base64Image
    self.description = description
    self.version = version
    self.pythonVersion = pythonVersion
    self.disabled = disabled
    self.id = id
    self.author = author
    self.modifiedDate = modifiedDate
    self.createdDate = createdDate
    self.authorEmail = authorEmail
    self.url = url
    self.packages = packages
    self.fileId = fileId
    self.isEmailBundle = isEmailBundle
    self.vendor = vendor
    self.product = product
    self.readme = readme
    self.changeLog = changeLog
    if supportedSwimlaneVersion is not NOTHING:
        self.supportedSwimlaneVersion = supportedSwimlaneVersion
    else:
        self.supportedSwimlaneVersion = __attr_factory_supportedSwimlaneVersion()
    self.availableActionDescriptors = availableActionDescriptors
    self.assetDescriptors = assetDescriptors
    self.family = family
    self.__attrs_post_init__()

PluginLight

__attrs_init__(self, author, base64Image, changeLog, createdDate, description, id, modifiedDate, name, product, pythonVersion, readme, vendor, version, supportedSwimlaneVersion=None, family=None) special

Method generated by attrs for class PluginLight.

Source code in aqueduct/models/plugin.py
def __attrs_init__(self, author, base64Image, changeLog, createdDate, description, id, modifiedDate, name, product, pythonVersion, readme, vendor, version, supportedSwimlaneVersion=attr_dict['supportedSwimlaneVersion'].default, family=attr_dict['family'].default):
    self.author = author
    self.base64Image = base64Image
    self.changeLog = changeLog
    self.createdDate = createdDate
    self.description = description
    self.id = id
    self.modifiedDate = modifiedDate
    self.name = name
    self.product = product
    self.pythonVersion = pythonVersion
    self.readme = readme
    self.vendor = vendor
    self.version = version
    self.supportedSwimlaneVersion = supportedSwimlaneVersion
    self.family = family

report

Aggregates

__init__(self, fieldId, aggregateType) special

Method generated by attrs for class Aggregates.

Source code in aqueduct/models/report.py
def __init__(self, fieldId, aggregateType):
    self.fieldId = fieldId
    self.aggregateType = aggregateType

Filters

__init__(self, fieldId, filterType, drillin, value=None) special

Method generated by attrs for class Filters.

Source code in aqueduct/models/report.py
def __init__(self, fieldId, filterType, drillin, value=attr_dict['value'].default):
    self.fieldId = fieldId
    self.filterType = filterType
    self.drillin = drillin
    self.value = value

GroupBys

__init__(self, fieldId, groupByType) special

Method generated by attrs for class GroupBys.

Source code in aqueduct/models/report.py
def __init__(self, fieldId, groupByType):
    self.fieldId = fieldId
    self.groupByType = groupByType

Report

__attrs_init__(self, applicationIds, columns, sorts, filters, countByApplicationFacet, pageSize, offset, defaultSearchReport, permissions, modifiedDate, createdByUser, modifiedByUser, uid, version, id, name, disabled, chartOptions={}, groupBys=[], aggregates=[], allowed=[], statsDrillin=None, createdDate=None, keywords=None) special

Method generated by attrs for class Report.

Source code in aqueduct/models/report.py
def __attrs_init__(self, applicationIds, columns, sorts, filters, countByApplicationFacet, pageSize, offset, defaultSearchReport, permissions, modifiedDate, createdByUser, modifiedByUser, uid, version, id, name, disabled, chartOptions=attr_dict['chartOptions'].default, groupBys=attr_dict['groupBys'].default, aggregates=attr_dict['aggregates'].default, allowed=attr_dict['allowed'].default, statsDrillin=attr_dict['statsDrillin'].default, createdDate=attr_dict['createdDate'].default, keywords=attr_dict['keywords'].default):
    self.applicationIds = applicationIds
    self.columns = columns
    self.sorts = sorts
    self.filters = filters
    self.countByApplicationFacet = countByApplicationFacet
    self.pageSize = pageSize
    self.offset = offset
    self.defaultSearchReport = defaultSearchReport
    self.permissions = permissions
    self.modifiedDate = modifiedDate
    self.createdByUser = createdByUser
    self.modifiedByUser = modifiedByUser
    self.uid = uid
    self.version = version
    self.id = id
    self.name = name
    self.disabled = disabled
    self.chartOptions = chartOptions
    self.groupBys = groupBys
    self.aggregates = aggregates
    self.allowed = allowed
    self.statsDrillin = statsDrillin
    self.createdDate = createdDate
    self.keywords = keywords
    self.__attrs_post_init__()

reports special

base

ChartOptions

__init__(self, colorScheme, showLegend, legendPosition, showLabels, showXAxis, showXAxisLabel, showYAxis, showYAxisLabel, gradient, zoom, autoScale, explodeSlices, transparentBackground, sort, showOtherGroup, showAxis, min, max, minRadius, maxRadius, units, bigSegments, smallSegments, angleSpan, startAngle, value, code, yAxisLabelText, xAxisLabelText) special

Method generated by attrs for class ChartOptions.

Source code in aqueduct/models/reports/base.py
def __init__(self, colorScheme, showLegend, legendPosition, showLabels, showXAxis, showXAxisLabel, showYAxis, showYAxisLabel, gradient, zoom, autoScale, explodeSlices, transparentBackground, sort, showOtherGroup, showAxis, min, max, minRadius, maxRadius, units, bigSegments, smallSegments, angleSpan, startAngle, value, code, yAxisLabelText, xAxisLabelText):
    self.colorScheme = colorScheme
    self.showLegend = showLegend
    self.legendPosition = legendPosition
    self.showLabels = showLabels
    self.showXAxis = showXAxis
    self.showXAxisLabel = showXAxisLabel
    self.showYAxis = showYAxis
    self.showYAxisLabel = showYAxisLabel
    self.gradient = gradient
    self.zoom = zoom
    self.autoScale = autoScale
    self.explodeSlices = explodeSlices
    self.transparentBackground = transparentBackground
    self.sort = sort
    self.showOtherGroup = showOtherGroup
    self.showAxis = showAxis
    self.min = min
    self.max = max
    self.minRadius = minRadius
    self.maxRadius = maxRadius
    self.units = units
    self.bigSegments = bigSegments
    self.smallSegments = smallSegments
    self.angleSpan = angleSpan
    self.startAngle = startAngle
    self.value = value
    self.code = code
    self.yAxisLabelText = yAxisLabelText
    self.xAxisLabelText = xAxisLabelText

ColorMap

__init__(self, name, value, isInternal) special

Method generated by attrs for class ColorMap.

Source code in aqueduct/models/reports/base.py
def __init__(self, name, value, isInternal):
    self.name = name
    self.value = value
    self.isInternal = isInternal

Sort

__init__(self, directionD0, directionD1, entriesD0=[], entriesD1=[]) special

Method generated by attrs for class Sort.

Source code in aqueduct/models/reports/base.py
def __init__(self, directionD0, directionD1, entriesD0=attr_dict['entriesD0'].default, entriesD1=attr_dict['entriesD1'].default):
    self.directionD0 = directionD0
    self.directionD1 = directionD1
    self.entriesD0 = entriesD0
    self.entriesD1 = entriesD1

SortEntries

__init__(self, name) special

Method generated by attrs for class SortEntries.

Source code in aqueduct/models/reports/base.py
def __init__(self, name):
    self.name = name

types

AdvancedPie (ChartOptions)

__init__(self, colorScheme, showLegend, legendPosition, showLabels, showXAxis, showXAxisLabel, showYAxis, showYAxisLabel, gradient, zoom, autoScale, explodeSlices, transparentBackground, sort, showOtherGroup, showAxis, min, max, minRadius, maxRadius, units, bigSegments, smallSegments, angleSpan, startAngle, value, code, yAxisLabelText, xAxisLabelText, chartType, curveType, colorMap) special

Method generated by attrs for class AdvancedPie.

Source code in aqueduct/models/reports/types.py
def __init__(self, colorScheme, showLegend, legendPosition, showLabels, showXAxis, showXAxisLabel, showYAxis, showYAxisLabel, gradient, zoom, autoScale, explodeSlices, transparentBackground, sort, showOtherGroup, showAxis, min, max, minRadius, maxRadius, units, bigSegments, smallSegments, angleSpan, startAngle, value, code, yAxisLabelText, xAxisLabelText, chartType, curveType, colorMap):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('colorScheme', colorScheme)
    _setattr('showLegend', showLegend)
    _setattr('legendPosition', legendPosition)
    _setattr('showLabels', showLabels)
    _setattr('showXAxis', showXAxis)
    _setattr('showXAxisLabel', showXAxisLabel)
    _setattr('showYAxis', showYAxis)
    _setattr('showYAxisLabel', showYAxisLabel)
    _setattr('gradient', gradient)
    _setattr('zoom', zoom)
    _setattr('autoScale', autoScale)
    _setattr('explodeSlices', explodeSlices)
    _setattr('transparentBackground', transparentBackground)
    _setattr('sort', sort)
    _setattr('showOtherGroup', showOtherGroup)
    _setattr('showAxis', showAxis)
    _setattr('min', min)
    _setattr('max', max)
    _setattr('minRadius', minRadius)
    _setattr('maxRadius', maxRadius)
    _setattr('units', units)
    _setattr('bigSegments', bigSegments)
    _setattr('smallSegments', smallSegments)
    _setattr('angleSpan', angleSpan)
    _setattr('startAngle', startAngle)
    _setattr('value', value)
    _setattr('code', code)
    _setattr('yAxisLabelText', yAxisLabelText)
    _setattr('xAxisLabelText', xAxisLabelText)
    _setattr('chartType', chartType)
    _setattr('curveType', curveType)
    _setattr('colorMap', colorMap)
    if _config._run_validators is True:
        __attr_validator_chartType(self, __attr_chartType, self.chartType)
        __attr_validator_curveType(self, __attr_curveType, self.curveType)
__setattr__(self, name, val) special

Method generated by attrs for class AdvancedPie.

Source code in aqueduct/models/reports/types.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

Area (ChartOptions)

__init__(self, colorScheme, showLegend, legendPosition, showLabels, showXAxis, showXAxisLabel, showYAxis, showYAxisLabel, gradient, zoom, autoScale, explodeSlices, transparentBackground, sort, showOtherGroup, showAxis, min, max, minRadius, maxRadius, units, bigSegments, smallSegments, angleSpan, startAngle, value, code, yAxisLabelText, xAxisLabelText, chartType, curveType, colorMap=[]) special

Method generated by attrs for class Area.

Source code in aqueduct/models/reports/types.py
def __init__(self, colorScheme, showLegend, legendPosition, showLabels, showXAxis, showXAxisLabel, showYAxis, showYAxisLabel, gradient, zoom, autoScale, explodeSlices, transparentBackground, sort, showOtherGroup, showAxis, min, max, minRadius, maxRadius, units, bigSegments, smallSegments, angleSpan, startAngle, value, code, yAxisLabelText, xAxisLabelText, chartType, curveType, colorMap=attr_dict['colorMap'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('colorScheme', colorScheme)
    _setattr('showLegend', showLegend)
    _setattr('legendPosition', legendPosition)
    _setattr('showLabels', showLabels)
    _setattr('showXAxis', showXAxis)
    _setattr('showXAxisLabel', showXAxisLabel)
    _setattr('showYAxis', showYAxis)
    _setattr('showYAxisLabel', showYAxisLabel)
    _setattr('gradient', gradient)
    _setattr('zoom', zoom)
    _setattr('autoScale', autoScale)
    _setattr('explodeSlices', explodeSlices)
    _setattr('transparentBackground', transparentBackground)
    _setattr('sort', sort)
    _setattr('showOtherGroup', showOtherGroup)
    _setattr('showAxis', showAxis)
    _setattr('min', min)
    _setattr('max', max)
    _setattr('minRadius', minRadius)
    _setattr('maxRadius', maxRadius)
    _setattr('units', units)
    _setattr('bigSegments', bigSegments)
    _setattr('smallSegments', smallSegments)
    _setattr('angleSpan', angleSpan)
    _setattr('startAngle', startAngle)
    _setattr('value', value)
    _setattr('code', code)
    _setattr('yAxisLabelText', yAxisLabelText)
    _setattr('xAxisLabelText', xAxisLabelText)
    _setattr('chartType', chartType)
    _setattr('curveType', curveType)
    _setattr('colorMap', colorMap)
    if _config._run_validators is True:
        __attr_validator_chartType(self, __attr_chartType, self.chartType)
        __attr_validator_curveType(self, __attr_curveType, self.curveType)
__setattr__(self, name, val) special

Method generated by attrs for class Area.

Source code in aqueduct/models/reports/types.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

Heat (ChartOptions)

__init__(self, colorScheme, showLegend, legendPosition, showLabels, showXAxis, showXAxisLabel, showYAxis, showYAxisLabel, gradient, zoom, autoScale, explodeSlices, transparentBackground, sort, showOtherGroup, showAxis, min, max, minRadius, maxRadius, units, bigSegments, smallSegments, angleSpan, startAngle, value, code, yAxisLabelText, xAxisLabelText, chartType, curveType, colorMap) special

Method generated by attrs for class Heat.

Source code in aqueduct/models/reports/types.py
def __init__(self, colorScheme, showLegend, legendPosition, showLabels, showXAxis, showXAxisLabel, showYAxis, showYAxisLabel, gradient, zoom, autoScale, explodeSlices, transparentBackground, sort, showOtherGroup, showAxis, min, max, minRadius, maxRadius, units, bigSegments, smallSegments, angleSpan, startAngle, value, code, yAxisLabelText, xAxisLabelText, chartType, curveType, colorMap):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('colorScheme', colorScheme)
    _setattr('showLegend', showLegend)
    _setattr('legendPosition', legendPosition)
    _setattr('showLabels', showLabels)
    _setattr('showXAxis', showXAxis)
    _setattr('showXAxisLabel', showXAxisLabel)
    _setattr('showYAxis', showYAxis)
    _setattr('showYAxisLabel', showYAxisLabel)
    _setattr('gradient', gradient)
    _setattr('zoom', zoom)
    _setattr('autoScale', autoScale)
    _setattr('explodeSlices', explodeSlices)
    _setattr('transparentBackground', transparentBackground)
    _setattr('sort', sort)
    _setattr('showOtherGroup', showOtherGroup)
    _setattr('showAxis', showAxis)
    _setattr('min', min)
    _setattr('max', max)
    _setattr('minRadius', minRadius)
    _setattr('maxRadius', maxRadius)
    _setattr('units', units)
    _setattr('bigSegments', bigSegments)
    _setattr('smallSegments', smallSegments)
    _setattr('angleSpan', angleSpan)
    _setattr('startAngle', startAngle)
    _setattr('value', value)
    _setattr('code', code)
    _setattr('yAxisLabelText', yAxisLabelText)
    _setattr('xAxisLabelText', xAxisLabelText)
    _setattr('chartType', chartType)
    _setattr('curveType', curveType)
    _setattr('colorMap', colorMap)
    if _config._run_validators is True:
        __attr_validator_chartType(self, __attr_chartType, self.chartType)
        __attr_validator_curveType(self, __attr_curveType, self.curveType)
__setattr__(self, name, val) special

Method generated by attrs for class Heat.

Source code in aqueduct/models/reports/types.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

HorizontalBar (ChartOptions)

__init__(self, colorScheme, showLegend, legendPosition, showLabels, showXAxis, showXAxisLabel, showYAxis, showYAxisLabel, gradient, zoom, autoScale, explodeSlices, transparentBackground, sort, showOtherGroup, showAxis, min, max, minRadius, maxRadius, units, bigSegments, smallSegments, angleSpan, startAngle, value, code, yAxisLabelText, xAxisLabelText, chartType, curveType, colorMap) special

Method generated by attrs for class HorizontalBar.

Source code in aqueduct/models/reports/types.py
def __init__(self, colorScheme, showLegend, legendPosition, showLabels, showXAxis, showXAxisLabel, showYAxis, showYAxisLabel, gradient, zoom, autoScale, explodeSlices, transparentBackground, sort, showOtherGroup, showAxis, min, max, minRadius, maxRadius, units, bigSegments, smallSegments, angleSpan, startAngle, value, code, yAxisLabelText, xAxisLabelText, chartType, curveType, colorMap):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('colorScheme', colorScheme)
    _setattr('showLegend', showLegend)
    _setattr('legendPosition', legendPosition)
    _setattr('showLabels', showLabels)
    _setattr('showXAxis', showXAxis)
    _setattr('showXAxisLabel', showXAxisLabel)
    _setattr('showYAxis', showYAxis)
    _setattr('showYAxisLabel', showYAxisLabel)
    _setattr('gradient', gradient)
    _setattr('zoom', zoom)
    _setattr('autoScale', autoScale)
    _setattr('explodeSlices', explodeSlices)
    _setattr('transparentBackground', transparentBackground)
    _setattr('sort', sort)
    _setattr('showOtherGroup', showOtherGroup)
    _setattr('showAxis', showAxis)
    _setattr('min', min)
    _setattr('max', max)
    _setattr('minRadius', minRadius)
    _setattr('maxRadius', maxRadius)
    _setattr('units', units)
    _setattr('bigSegments', bigSegments)
    _setattr('smallSegments', smallSegments)
    _setattr('angleSpan', angleSpan)
    _setattr('startAngle', startAngle)
    _setattr('value', value)
    _setattr('code', code)
    _setattr('yAxisLabelText', yAxisLabelText)
    _setattr('xAxisLabelText', xAxisLabelText)
    _setattr('chartType', chartType)
    _setattr('curveType', curveType)
    _setattr('colorMap', colorMap)
    if _config._run_validators is True:
        __attr_validator_chartType(self, __attr_chartType, self.chartType)
        __attr_validator_curveType(self, __attr_curveType, self.curveType)
__setattr__(self, name, val) special

Method generated by attrs for class HorizontalBar.

Source code in aqueduct/models/reports/types.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

Line (ChartOptions)

__init__(self, colorScheme, showLegend, legendPosition, showLabels, showXAxis, showXAxisLabel, showYAxis, showYAxisLabel, gradient, zoom, autoScale, explodeSlices, transparentBackground, sort, showOtherGroup, showAxis, min, max, minRadius, maxRadius, units, bigSegments, smallSegments, angleSpan, startAngle, value, code, yAxisLabelText, xAxisLabelText, chartType, curveType, colorMap) special

Method generated by attrs for class Line.

Source code in aqueduct/models/reports/types.py
def __init__(self, colorScheme, showLegend, legendPosition, showLabels, showXAxis, showXAxisLabel, showYAxis, showYAxisLabel, gradient, zoom, autoScale, explodeSlices, transparentBackground, sort, showOtherGroup, showAxis, min, max, minRadius, maxRadius, units, bigSegments, smallSegments, angleSpan, startAngle, value, code, yAxisLabelText, xAxisLabelText, chartType, curveType, colorMap):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('colorScheme', colorScheme)
    _setattr('showLegend', showLegend)
    _setattr('legendPosition', legendPosition)
    _setattr('showLabels', showLabels)
    _setattr('showXAxis', showXAxis)
    _setattr('showXAxisLabel', showXAxisLabel)
    _setattr('showYAxis', showYAxis)
    _setattr('showYAxisLabel', showYAxisLabel)
    _setattr('gradient', gradient)
    _setattr('zoom', zoom)
    _setattr('autoScale', autoScale)
    _setattr('explodeSlices', explodeSlices)
    _setattr('transparentBackground', transparentBackground)
    _setattr('sort', sort)
    _setattr('showOtherGroup', showOtherGroup)
    _setattr('showAxis', showAxis)
    _setattr('min', min)
    _setattr('max', max)
    _setattr('minRadius', minRadius)
    _setattr('maxRadius', maxRadius)
    _setattr('units', units)
    _setattr('bigSegments', bigSegments)
    _setattr('smallSegments', smallSegments)
    _setattr('angleSpan', angleSpan)
    _setattr('startAngle', startAngle)
    _setattr('value', value)
    _setattr('code', code)
    _setattr('yAxisLabelText', yAxisLabelText)
    _setattr('xAxisLabelText', xAxisLabelText)
    _setattr('chartType', chartType)
    _setattr('curveType', curveType)
    _setattr('colorMap', colorMap)
    if _config._run_validators is True:
        __attr_validator_chartType(self, __attr_chartType, self.chartType)
        __attr_validator_curveType(self, __attr_curveType, self.curveType)
__setattr__(self, name, val) special

Method generated by attrs for class Line.

Source code in aqueduct/models/reports/types.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

LinearGauge (ChartOptions)

__init__(self, colorScheme, showLegend, legendPosition, showLabels, showXAxis, showXAxisLabel, showYAxis, showYAxisLabel, gradient, zoom, autoScale, explodeSlices, transparentBackground, sort, showOtherGroup, showAxis, min, max, minRadius, maxRadius, units, bigSegments, smallSegments, angleSpan, startAngle, value, code, yAxisLabelText, xAxisLabelText, chartType, curveType, colorMap=[]) special

Method generated by attrs for class LinearGauge.

Source code in aqueduct/models/reports/types.py
def __init__(self, colorScheme, showLegend, legendPosition, showLabels, showXAxis, showXAxisLabel, showYAxis, showYAxisLabel, gradient, zoom, autoScale, explodeSlices, transparentBackground, sort, showOtherGroup, showAxis, min, max, minRadius, maxRadius, units, bigSegments, smallSegments, angleSpan, startAngle, value, code, yAxisLabelText, xAxisLabelText, chartType, curveType, colorMap=attr_dict['colorMap'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('colorScheme', colorScheme)
    _setattr('showLegend', showLegend)
    _setattr('legendPosition', legendPosition)
    _setattr('showLabels', showLabels)
    _setattr('showXAxis', showXAxis)
    _setattr('showXAxisLabel', showXAxisLabel)
    _setattr('showYAxis', showYAxis)
    _setattr('showYAxisLabel', showYAxisLabel)
    _setattr('gradient', gradient)
    _setattr('zoom', zoom)
    _setattr('autoScale', autoScale)
    _setattr('explodeSlices', explodeSlices)
    _setattr('transparentBackground', transparentBackground)
    _setattr('sort', sort)
    _setattr('showOtherGroup', showOtherGroup)
    _setattr('showAxis', showAxis)
    _setattr('min', min)
    _setattr('max', max)
    _setattr('minRadius', minRadius)
    _setattr('maxRadius', maxRadius)
    _setattr('units', units)
    _setattr('bigSegments', bigSegments)
    _setattr('smallSegments', smallSegments)
    _setattr('angleSpan', angleSpan)
    _setattr('startAngle', startAngle)
    _setattr('value', value)
    _setattr('code', code)
    _setattr('yAxisLabelText', yAxisLabelText)
    _setattr('xAxisLabelText', xAxisLabelText)
    _setattr('chartType', chartType)
    _setattr('curveType', curveType)
    _setattr('colorMap', colorMap)
    if _config._run_validators is True:
        __attr_validator_chartType(self, __attr_chartType, self.chartType)
        __attr_validator_curveType(self, __attr_curveType, self.curveType)
__setattr__(self, name, val) special

Method generated by attrs for class LinearGauge.

Source code in aqueduct/models/reports/types.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

Number (ChartOptions)

__init__(self, colorScheme, showLegend, legendPosition, showLabels, showXAxis, showXAxisLabel, showYAxis, showYAxisLabel, gradient, zoom, autoScale, explodeSlices, transparentBackground, sort, showOtherGroup, showAxis, min, max, minRadius, maxRadius, units, bigSegments, smallSegments, angleSpan, startAngle, value, code, yAxisLabelText, xAxisLabelText, chartType, curveType, colorMap) special

Method generated by attrs for class Number.

Source code in aqueduct/models/reports/types.py
def __init__(self, colorScheme, showLegend, legendPosition, showLabels, showXAxis, showXAxisLabel, showYAxis, showYAxisLabel, gradient, zoom, autoScale, explodeSlices, transparentBackground, sort, showOtherGroup, showAxis, min, max, minRadius, maxRadius, units, bigSegments, smallSegments, angleSpan, startAngle, value, code, yAxisLabelText, xAxisLabelText, chartType, curveType, colorMap):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('colorScheme', colorScheme)
    _setattr('showLegend', showLegend)
    _setattr('legendPosition', legendPosition)
    _setattr('showLabels', showLabels)
    _setattr('showXAxis', showXAxis)
    _setattr('showXAxisLabel', showXAxisLabel)
    _setattr('showYAxis', showYAxis)
    _setattr('showYAxisLabel', showYAxisLabel)
    _setattr('gradient', gradient)
    _setattr('zoom', zoom)
    _setattr('autoScale', autoScale)
    _setattr('explodeSlices', explodeSlices)
    _setattr('transparentBackground', transparentBackground)
    _setattr('sort', sort)
    _setattr('showOtherGroup', showOtherGroup)
    _setattr('showAxis', showAxis)
    _setattr('min', min)
    _setattr('max', max)
    _setattr('minRadius', minRadius)
    _setattr('maxRadius', maxRadius)
    _setattr('units', units)
    _setattr('bigSegments', bigSegments)
    _setattr('smallSegments', smallSegments)
    _setattr('angleSpan', angleSpan)
    _setattr('startAngle', startAngle)
    _setattr('value', value)
    _setattr('code', code)
    _setattr('yAxisLabelText', yAxisLabelText)
    _setattr('xAxisLabelText', xAxisLabelText)
    _setattr('chartType', chartType)
    _setattr('curveType', curveType)
    _setattr('colorMap', colorMap)
    if _config._run_validators is True:
        __attr_validator_chartType(self, __attr_chartType, self.chartType)
        __attr_validator_curveType(self, __attr_curveType, self.curveType)
__setattr__(self, name, val) special

Method generated by attrs for class Number.

Source code in aqueduct/models/reports/types.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

PieGrid (ChartOptions)

__init__(self, colorScheme, showLegend, legendPosition, showLabels, showXAxis, showXAxisLabel, showYAxis, showYAxisLabel, gradient, zoom, autoScale, explodeSlices, transparentBackground, sort, showOtherGroup, showAxis, min, max, minRadius, maxRadius, units, bigSegments, smallSegments, angleSpan, startAngle, value, code, yAxisLabelText, xAxisLabelText, chartType, chartSubType, curveType, colorMap) special

Method generated by attrs for class PieGrid.

Source code in aqueduct/models/reports/types.py
def __init__(self, colorScheme, showLegend, legendPosition, showLabels, showXAxis, showXAxisLabel, showYAxis, showYAxisLabel, gradient, zoom, autoScale, explodeSlices, transparentBackground, sort, showOtherGroup, showAxis, min, max, minRadius, maxRadius, units, bigSegments, smallSegments, angleSpan, startAngle, value, code, yAxisLabelText, xAxisLabelText, chartType, chartSubType, curveType, colorMap):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('colorScheme', colorScheme)
    _setattr('showLegend', showLegend)
    _setattr('legendPosition', legendPosition)
    _setattr('showLabels', showLabels)
    _setattr('showXAxis', showXAxis)
    _setattr('showXAxisLabel', showXAxisLabel)
    _setattr('showYAxis', showYAxis)
    _setattr('showYAxisLabel', showYAxisLabel)
    _setattr('gradient', gradient)
    _setattr('zoom', zoom)
    _setattr('autoScale', autoScale)
    _setattr('explodeSlices', explodeSlices)
    _setattr('transparentBackground', transparentBackground)
    _setattr('sort', sort)
    _setattr('showOtherGroup', showOtherGroup)
    _setattr('showAxis', showAxis)
    _setattr('min', min)
    _setattr('max', max)
    _setattr('minRadius', minRadius)
    _setattr('maxRadius', maxRadius)
    _setattr('units', units)
    _setattr('bigSegments', bigSegments)
    _setattr('smallSegments', smallSegments)
    _setattr('angleSpan', angleSpan)
    _setattr('startAngle', startAngle)
    _setattr('value', value)
    _setattr('code', code)
    _setattr('yAxisLabelText', yAxisLabelText)
    _setattr('xAxisLabelText', xAxisLabelText)
    _setattr('chartType', chartType)
    _setattr('chartSubType', chartSubType)
    _setattr('curveType', curveType)
    _setattr('colorMap', colorMap)
    if _config._run_validators is True:
        __attr_validator_chartType(self, __attr_chartType, self.chartType)
        __attr_validator_chartSubType(self, __attr_chartSubType, self.chartSubType)
        __attr_validator_curveType(self, __attr_curveType, self.curveType)
__setattr__(self, name, val) special

Method generated by attrs for class PieGrid.

Source code in aqueduct/models/reports/types.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

VerticalBar (ChartOptions)

__init__(self, colorScheme, showLegend, legendPosition, showLabels, showXAxis, showXAxisLabel, showYAxis, showYAxisLabel, gradient, zoom, autoScale, explodeSlices, transparentBackground, sort, showOtherGroup, showAxis, min, max, minRadius, maxRadius, units, bigSegments, smallSegments, angleSpan, startAngle, value, code, yAxisLabelText, xAxisLabelText, chartType, curveType, colorMap=[]) special

Method generated by attrs for class VerticalBar.

Source code in aqueduct/models/reports/types.py
def __init__(self, colorScheme, showLegend, legendPosition, showLabels, showXAxis, showXAxisLabel, showYAxis, showYAxisLabel, gradient, zoom, autoScale, explodeSlices, transparentBackground, sort, showOtherGroup, showAxis, min, max, minRadius, maxRadius, units, bigSegments, smallSegments, angleSpan, startAngle, value, code, yAxisLabelText, xAxisLabelText, chartType, curveType, colorMap=attr_dict['colorMap'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('colorScheme', colorScheme)
    _setattr('showLegend', showLegend)
    _setattr('legendPosition', legendPosition)
    _setattr('showLabels', showLabels)
    _setattr('showXAxis', showXAxis)
    _setattr('showXAxisLabel', showXAxisLabel)
    _setattr('showYAxis', showYAxis)
    _setattr('showYAxisLabel', showYAxisLabel)
    _setattr('gradient', gradient)
    _setattr('zoom', zoom)
    _setattr('autoScale', autoScale)
    _setattr('explodeSlices', explodeSlices)
    _setattr('transparentBackground', transparentBackground)
    _setattr('sort', sort)
    _setattr('showOtherGroup', showOtherGroup)
    _setattr('showAxis', showAxis)
    _setattr('min', min)
    _setattr('max', max)
    _setattr('minRadius', minRadius)
    _setattr('maxRadius', maxRadius)
    _setattr('units', units)
    _setattr('bigSegments', bigSegments)
    _setattr('smallSegments', smallSegments)
    _setattr('angleSpan', angleSpan)
    _setattr('startAngle', startAngle)
    _setattr('value', value)
    _setattr('code', code)
    _setattr('yAxisLabelText', yAxisLabelText)
    _setattr('xAxisLabelText', xAxisLabelText)
    _setattr('chartType', chartType)
    _setattr('curveType', curveType)
    _setattr('colorMap', colorMap)
    if _config._run_validators is True:
        __attr_validator_chartType(self, __attr_chartType, self.chartType)
        __attr_validator_curveType(self, __attr_curveType, self.curveType)
__setattr__(self, name, val) special

Method generated by attrs for class VerticalBar.

Source code in aqueduct/models/reports/types.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

Widget (ChartOptions)

__init__(self, colorScheme, showLegend, legendPosition, showLabels, showXAxis, showXAxisLabel, showYAxis, showYAxisLabel, gradient, zoom, autoScale, explodeSlices, transparentBackground, sort, showOtherGroup, showAxis, min, max, minRadius, maxRadius, units, bigSegments, smallSegments, angleSpan, startAngle, value, code, yAxisLabelText, xAxisLabelText, chartType, curveType, colorMap=[]) special

Method generated by attrs for class Widget.

Source code in aqueduct/models/reports/types.py
def __init__(self, colorScheme, showLegend, legendPosition, showLabels, showXAxis, showXAxisLabel, showYAxis, showYAxisLabel, gradient, zoom, autoScale, explodeSlices, transparentBackground, sort, showOtherGroup, showAxis, min, max, minRadius, maxRadius, units, bigSegments, smallSegments, angleSpan, startAngle, value, code, yAxisLabelText, xAxisLabelText, chartType, curveType, colorMap=attr_dict['colorMap'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('colorScheme', colorScheme)
    _setattr('showLegend', showLegend)
    _setattr('legendPosition', legendPosition)
    _setattr('showLabels', showLabels)
    _setattr('showXAxis', showXAxis)
    _setattr('showXAxisLabel', showXAxisLabel)
    _setattr('showYAxis', showYAxis)
    _setattr('showYAxisLabel', showYAxisLabel)
    _setattr('gradient', gradient)
    _setattr('zoom', zoom)
    _setattr('autoScale', autoScale)
    _setattr('explodeSlices', explodeSlices)
    _setattr('transparentBackground', transparentBackground)
    _setattr('sort', sort)
    _setattr('showOtherGroup', showOtherGroup)
    _setattr('showAxis', showAxis)
    _setattr('min', min)
    _setattr('max', max)
    _setattr('minRadius', minRadius)
    _setattr('maxRadius', maxRadius)
    _setattr('units', units)
    _setattr('bigSegments', bigSegments)
    _setattr('smallSegments', smallSegments)
    _setattr('angleSpan', angleSpan)
    _setattr('startAngle', startAngle)
    _setattr('value', value)
    _setattr('code', code)
    _setattr('yAxisLabelText', yAxisLabelText)
    _setattr('xAxisLabelText', xAxisLabelText)
    _setattr('chartType', chartType)
    _setattr('curveType', curveType)
    _setattr('colorMap', colorMap)
    if _config._run_validators is True:
        __attr_validator_chartType(self, __attr_chartType, self.chartType)
        __attr_validator_curveType(self, __attr_curveType, self.curveType)
__setattr__(self, name, val) special

Method generated by attrs for class Widget.

Source code in aqueduct/models/reports/types.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

role

Role

A Swimlane Role object model

__attrs_init__(self, id, name, disabled, description='', createdByUser={}, createdDate='', modifiedByUser={}, modifiedDate='', permissions={}, users=[], groups=[]) special

Method generated by attrs for class Role.

Source code in aqueduct/models/role.py
def __attrs_init__(self, id, name, disabled, description=attr_dict['description'].default, createdByUser=attr_dict['createdByUser'].default, createdDate=attr_dict['createdDate'].default, modifiedByUser=attr_dict['modifiedByUser'].default, modifiedDate=attr_dict['modifiedDate'].default, permissions=attr_dict['permissions'].default, users=attr_dict['users'].default, groups=attr_dict['groups'].default):
    self.id = id
    self.name = name
    self.disabled = disabled
    self.description = description
    self.createdByUser = createdByUser
    self.createdDate = createdDate
    self.modifiedByUser = modifiedByUser
    self.modifiedDate = modifiedDate
    self.permissions = permissions
    self.users = users
    self.groups = groups
    self.__attrs_post_init__()

task

Action

__attrs_init__(self, type, descriptor, readonly, script=None, packageDescriptorId=None, assetId=None, forkedFromPackage=None, assetDependencyType=None, assetDependencyVersion=None, headers={}, parameters={}, authenticationParameters={}, requestType=None, apiType=None, authenticationType=None) special

Method generated by attrs for class Action.

Source code in aqueduct/models/task.py
def __attrs_init__(self, type, descriptor, readonly, script=attr_dict['script'].default, packageDescriptorId=attr_dict['packageDescriptorId'].default, assetId=attr_dict['assetId'].default, forkedFromPackage=attr_dict['forkedFromPackage'].default, assetDependencyType=attr_dict['assetDependencyType'].default, assetDependencyVersion=attr_dict['assetDependencyVersion'].default, headers=attr_dict['headers'].default, parameters=attr_dict['parameters'].default, authenticationParameters=attr_dict['authenticationParameters'].default, requestType=attr_dict['requestType'].default, apiType=attr_dict['apiType'].default, authenticationType=attr_dict['authenticationType'].default):
    self.type = type
    self.descriptor = descriptor
    self.readonly = readonly
    self.script = script
    self.packageDescriptorId = packageDescriptorId
    self.assetId = assetId
    self.forkedFromPackage = forkedFromPackage
    self.assetDependencyType = assetDependencyType
    self.assetDependencyVersion = assetDependencyVersion
    self.headers = headers
    self.parameters = parameters
    self.authenticationParameters = authenticationParameters
    self.requestType = requestType
    self.apiType = apiType
    self.authenticationType = authenticationType
    self.__attrs_post_init__()

InputMapping (InputOutputFieldMapping)

__attrs_init__(self, addMissing, unixEpochUnit, enableDeletionOnNull, dataFormat, listModificationType, key=NOTHING, userFormat=None, subValue=None, example=None, type=None, value=None) special

Method generated by attrs for class InputMapping.

Source code in aqueduct/models/task.py
def __attrs_init__(self, addMissing, unixEpochUnit, enableDeletionOnNull, dataFormat, listModificationType, key=NOTHING, userFormat=attr_dict['userFormat'].default, subValue=attr_dict['subValue'].default, example=attr_dict['example'].default, type=attr_dict['type'].default, value=attr_dict['value'].default):
    self.addMissing = addMissing
    self.unixEpochUnit = unixEpochUnit
    self.enableDeletionOnNull = enableDeletionOnNull
    self.dataFormat = dataFormat
    self.listModificationType = listModificationType
    if key is not NOTHING:
        self.key = key
    else:
        self.key = __attr_factory_key()
    self.userFormat = userFormat
    self.subValue = subValue
    self.example = example
    self.type = type
    self.value = value

InputOutputFieldMapping

__attrs_init__(self, addMissing, unixEpochUnit, enableDeletionOnNull, dataFormat, listModificationType, key=NOTHING, userFormat=None, subValue=None) special

Method generated by attrs for class InputOutputFieldMapping.

Source code in aqueduct/models/task.py
def __attrs_init__(self, addMissing, unixEpochUnit, enableDeletionOnNull, dataFormat, listModificationType, key=NOTHING, userFormat=attr_dict['userFormat'].default, subValue=attr_dict['subValue'].default):
    self.addMissing = addMissing
    self.unixEpochUnit = unixEpochUnit
    self.enableDeletionOnNull = enableDeletionOnNull
    self.dataFormat = dataFormat
    self.listModificationType = listModificationType
    if key is not NOTHING:
        self.key = key
    else:
        self.key = __attr_factory_key()
    self.userFormat = userFormat
    self.subValue = subValue

Output

__attrs_init__(self, type, mappings=[], createType=None, errorHandlingType=None, keyFieldId=None, applicationId=None, backReferenceFieldId=None, customDataFormat=None) special

Method generated by attrs for class Output.

Source code in aqueduct/models/task.py
def __attrs_init__(self, type, mappings=attr_dict['mappings'].default, createType=attr_dict['createType'].default, errorHandlingType=attr_dict['errorHandlingType'].default, keyFieldId=attr_dict['keyFieldId'].default, applicationId=attr_dict['applicationId'].default, backReferenceFieldId=attr_dict['backReferenceFieldId'].default, customDataFormat=attr_dict['customDataFormat'].default):
    self.type = type
    self.mappings = mappings
    self.createType = createType
    self.errorHandlingType = errorHandlingType
    self.keyFieldId = keyFieldId
    self.applicationId = applicationId
    self.backReferenceFieldId = backReferenceFieldId
    self.customDataFormat = customDataFormat
    self.__attrs_post_init__()

OutputMapping (InputOutputFieldMapping)

__attrs_init__(self, addMissing, unixEpochUnit, enableDeletionOnNull, dataFormat, listModificationType, key=NOTHING, userFormat=None, subValue=None, type=None, value=None, example=None, parserType=None, expression=None, customDataFormat=None) special

Method generated by attrs for class OutputMapping.

Source code in aqueduct/models/task.py
def __attrs_init__(self, addMissing, unixEpochUnit, enableDeletionOnNull, dataFormat, listModificationType, key=NOTHING, userFormat=attr_dict['userFormat'].default, subValue=attr_dict['subValue'].default, type=attr_dict['type'].default, value=attr_dict['value'].default, example=attr_dict['example'].default, parserType=attr_dict['parserType'].default, expression=attr_dict['expression'].default, customDataFormat=attr_dict['customDataFormat'].default):
    self.addMissing = addMissing
    self.unixEpochUnit = unixEpochUnit
    self.enableDeletionOnNull = enableDeletionOnNull
    self.dataFormat = dataFormat
    self.listModificationType = listModificationType
    if key is not NOTHING:
        self.key = key
    else:
        self.key = __attr_factory_key()
    self.userFormat = userFormat
    self.subValue = subValue
    self.type = type
    self.value = value
    self.example = example
    self.parserType = parserType
    self.expression = expression
    self.customDataFormat = customDataFormat

Task

__attrs_init__(self, action, isSystemTask, createdDate, modifiedDate, valid, uid, version, id, name, disabled, applicationId=None, description=None, createdByUser={}, modifiedByUser={}, inputMapping=[], outputs=[], triggers=[], actionType=None, actionDescription=None, actionDescriptorImageId=None, actionDescriptorName=None, actionDescriptorVendor=None, actionDescriptorProduct=None, actionDescriptorVersion=None, customDataFormat=None) special

Method generated by attrs for class Task.

Source code in aqueduct/models/task.py
def __attrs_init__(self, action, isSystemTask, createdDate, modifiedDate, valid, uid, version, id, name, disabled, applicationId=attr_dict['applicationId'].default, description=attr_dict['description'].default, createdByUser=attr_dict['createdByUser'].default, modifiedByUser=attr_dict['modifiedByUser'].default, inputMapping=attr_dict['inputMapping'].default, outputs=attr_dict['outputs'].default, triggers=attr_dict['triggers'].default, actionType=attr_dict['actionType'].default, actionDescription=attr_dict['actionDescription'].default, actionDescriptorImageId=attr_dict['actionDescriptorImageId'].default, actionDescriptorName=attr_dict['actionDescriptorName'].default, actionDescriptorVendor=attr_dict['actionDescriptorVendor'].default, actionDescriptorProduct=attr_dict['actionDescriptorProduct'].default, actionDescriptorVersion=attr_dict['actionDescriptorVersion'].default, customDataFormat=attr_dict['customDataFormat'].default):
    self.action = action
    self.isSystemTask = isSystemTask
    self.createdDate = createdDate
    self.modifiedDate = modifiedDate
    self.valid = valid
    self.uid = uid
    self.version = version
    self.id = id
    self.name = name
    self.disabled = disabled
    self.applicationId = applicationId
    self.description = description
    self.createdByUser = createdByUser
    self.modifiedByUser = modifiedByUser
    self.inputMapping = inputMapping
    self.outputs = outputs
    self.triggers = triggers
    self.actionType = actionType
    self.actionDescription = actionDescription
    self.actionDescriptorImageId = actionDescriptorImageId
    self.actionDescriptorName = actionDescriptorName
    self.actionDescriptorVendor = actionDescriptorVendor
    self.actionDescriptorProduct = actionDescriptorProduct
    self.actionDescriptorVersion = actionDescriptorVersion
    self.customDataFormat = customDataFormat
    self.__attrs_post_init__()

TaskLight

__attrs_init__(self, id, name, disabled, actionType, actionDescription, actionDescriptorImageId, actionDescriptorName, valid, migrated=None, deprecated=None, applicationId=None, actionDescriptorVendor=None, actionDescriptorProduct=None, actionDescriptorVersion=None, description=None) special

Method generated by attrs for class TaskLight.

Source code in aqueduct/models/task.py
def __attrs_init__(self, id, name, disabled, actionType, actionDescription, actionDescriptorImageId, actionDescriptorName, valid, migrated=attr_dict['migrated'].default, deprecated=attr_dict['deprecated'].default, applicationId=attr_dict['applicationId'].default, actionDescriptorVendor=attr_dict['actionDescriptorVendor'].default, actionDescriptorProduct=attr_dict['actionDescriptorProduct'].default, actionDescriptorVersion=attr_dict['actionDescriptorVersion'].default, description=attr_dict['description'].default):
    self.id = id
    self.name = name
    self.disabled = disabled
    self.actionType = actionType
    self.actionDescription = actionDescription
    self.actionDescriptorImageId = actionDescriptorImageId
    self.actionDescriptorName = actionDescriptorName
    self.valid = valid
    self.migrated = migrated
    self.deprecated = deprecated
    self.applicationId = applicationId
    self.actionDescriptorVendor = actionDescriptorVendor
    self.actionDescriptorProduct = actionDescriptorProduct
    self.actionDescriptorVersion = actionDescriptorVersion
    self.description = description

user

User (UserLight)

A Swimlane User object model

__attrs_init__(self, id, name, disabled, active, displayName, firstName, isLdapUser, isOTPVerified, isOtpEnforced, isOtpExempted, isOtpUser, isSystemUser, lastPasswordChangedDate, sessionTimeoutType, timeZoneId, passwordComplexityScore, passwordResetRequired, currentFailedLogInAttempts=None, isLocked=None, avatar=None, userName=None, email=None, lastName=None, middleInitial=None, lastLogin=None, primaryGroup={}, createdByUser={}, createdDate='', modifiedByUser={}, modifiedDate='', favorites={}, permissions={}, roles=[], groups=[], phoneNumber=None, lastFailedLogInAttemptAt=None) special

Method generated by attrs for class User.

Source code in aqueduct/models/user.py
def __attrs_init__(self, id, name, disabled, active, displayName, firstName, isLdapUser, isOTPVerified, isOtpEnforced, isOtpExempted, isOtpUser, isSystemUser, lastPasswordChangedDate, sessionTimeoutType, timeZoneId, passwordComplexityScore, passwordResetRequired, currentFailedLogInAttempts=attr_dict['currentFailedLogInAttempts'].default, isLocked=attr_dict['isLocked'].default, avatar=attr_dict['avatar'].default, userName=attr_dict['userName'].default, email=attr_dict['email'].default, lastName=attr_dict['lastName'].default, middleInitial=attr_dict['middleInitial'].default, lastLogin=attr_dict['lastLogin'].default, primaryGroup=attr_dict['primaryGroup'].default, createdByUser=attr_dict['createdByUser'].default, createdDate=attr_dict['createdDate'].default, modifiedByUser=attr_dict['modifiedByUser'].default, modifiedDate=attr_dict['modifiedDate'].default, favorites=attr_dict['favorites'].default, permissions=attr_dict['permissions'].default, roles=attr_dict['roles'].default, groups=attr_dict['groups'].default, phoneNumber=attr_dict['phoneNumber'].default, lastFailedLogInAttemptAt=attr_dict['lastFailedLogInAttemptAt'].default):
    self.id = id
    self.name = name
    self.disabled = disabled
    self.active = active
    self.displayName = displayName
    self.firstName = firstName
    self.isLdapUser = isLdapUser
    self.isOTPVerified = isOTPVerified
    self.isOtpEnforced = isOtpEnforced
    self.isOtpExempted = isOtpExempted
    self.isOtpUser = isOtpUser
    self.isSystemUser = isSystemUser
    self.lastPasswordChangedDate = lastPasswordChangedDate
    self.sessionTimeoutType = sessionTimeoutType
    self.timeZoneId = timeZoneId
    self.passwordComplexityScore = passwordComplexityScore
    self.passwordResetRequired = passwordResetRequired
    self.currentFailedLogInAttempts = currentFailedLogInAttempts
    self.isLocked = isLocked
    self.avatar = avatar
    self.userName = userName
    self.email = email
    self.lastName = lastName
    self.middleInitial = middleInitial
    self.lastLogin = lastLogin
    self.primaryGroup = primaryGroup
    self.createdByUser = createdByUser
    self.createdDate = createdDate
    self.modifiedByUser = modifiedByUser
    self.modifiedDate = modifiedDate
    self.favorites = favorites
    self.permissions = permissions
    self.roles = roles
    self.groups = groups
    self.phoneNumber = phoneNumber
    self.lastFailedLogInAttemptAt = lastFailedLogInAttemptAt
    self.__attrs_post_init__()

UserLight

__attrs_init__(self, id, name, disabled) special

Method generated by attrs for class UserLight.

Source code in aqueduct/models/user.py
def __attrs_init__(self, id, name, disabled):
    self.id = id
    self.name = name
    self.disabled = disabled

workflow

ActionBase (WorkflowBase)

__attrs_init__(self, id, name, disabled, parentId, actionType) special

Method generated by attrs for class ActionBase.

Source code in aqueduct/models/workflow.py
def __attrs_init__(self, id, name, disabled, parentId, actionType):
    self.id = id
    self.name = name
    self.disabled = disabled
    self.parentId = parentId
    self.actionType = actionType

Condition

__attrs_init__(self, conditionType, fieldId, isCaseSensitive, value=None, referenceFieldConjunction=None, referencedApplicationFieldId=None) special

Method generated by attrs for class Condition.

Source code in aqueduct/models/workflow.py
def __attrs_init__(self, conditionType, fieldId, isCaseSensitive, value=attr_dict['value'].default, referenceFieldConjunction=attr_dict['referenceFieldConjunction'].default, referencedApplicationFieldId=attr_dict['referencedApplicationFieldId'].default):
    self.conditionType = conditionType
    self.fieldId = fieldId
    self.isCaseSensitive = isCaseSensitive
    self.value = value
    self.referenceFieldConjunction = referenceFieldConjunction
    self.referencedApplicationFieldId = referencedApplicationFieldId

FieldSetAction (ActionBase)

__attrs_init__(self, id, name, disabled, parentId, actionType, fieldId=None, value=None, dateActionModifier=None, dateActionType=None) special

Method generated by attrs for class FieldSetAction.

Source code in aqueduct/models/workflow.py
def __attrs_init__(self, id, name, disabled, parentId, actionType, fieldId=attr_dict['fieldId'].default, value=attr_dict['value'].default, dateActionModifier=attr_dict['dateActionModifier'].default, dateActionType=attr_dict['dateActionType'].default):
    self.id = id
    self.name = name
    self.disabled = disabled
    self.parentId = parentId
    self.actionType = actionType
    self.fieldId = fieldId
    self.value = value
    self.dateActionModifier = dateActionModifier
    self.dateActionType = dateActionType

FieldStateAction (ActionBase)

__attrs_init__(self, id, name, disabled, parentId, actionType, fieldStates={}) special

Method generated by attrs for class FieldStateAction.

Source code in aqueduct/models/workflow.py
def __attrs_init__(self, id, name, disabled, parentId, actionType, fieldStates=attr_dict['fieldStates'].default):
    self.id = id
    self.name = name
    self.disabled = disabled
    self.parentId = parentId
    self.actionType = actionType
    self.fieldStates = fieldStates

FilterValuesAction (ActionBase)

__attrs_init__(self, id, name, disabled, parentId, actionType, valuesListsIds=[], fieldId=None) special

Method generated by attrs for class FilterValuesAction.

Source code in aqueduct/models/workflow.py
def __attrs_init__(self, id, name, disabled, parentId, actionType, valuesListsIds=attr_dict['valuesListsIds'].default, fieldId=attr_dict['fieldId'].default):
    self.id = id
    self.name = name
    self.disabled = disabled
    self.parentId = parentId
    self.actionType = actionType
    self.valuesListsIds = valuesListsIds
    self.fieldId = fieldId

LayoutAction (ActionBase)

__attrs_init__(self, id, name, disabled, parentId, actionType, layoutActions={}) special

Method generated by attrs for class LayoutAction.

Source code in aqueduct/models/workflow.py
def __attrs_init__(self, id, name, disabled, parentId, actionType, layoutActions=attr_dict['layoutActions'].default):
    self.id = id
    self.name = name
    self.disabled = disabled
    self.parentId = parentId
    self.actionType = actionType
    self.layoutActions = layoutActions

NotificationAction (ActionBase)

__attrs_init__(self, id, name, disabled, parentId, actionType, message=None, recipients=[], subject=None) special

Method generated by attrs for class NotificationAction.

Source code in aqueduct/models/workflow.py
def __attrs_init__(self, id, name, disabled, parentId, actionType, message=attr_dict['message'].default, recipients=attr_dict['recipients'].default, subject=attr_dict['subject'].default):
    self.id = id
    self.name = name
    self.disabled = disabled
    self.parentId = parentId
    self.actionType = actionType
    self.message = message
    self.recipients = recipients
    self.subject = subject

StageCondition (WorkflowBase)

__attrs_init__(self, id, name, disabled, parentId, conditionType, evalType, conditions=[], actions=[], repeats=[], stages=[]) special

Method generated by attrs for class StageCondition.

Source code in aqueduct/models/workflow.py
def __attrs_init__(self, id, name, disabled, parentId, conditionType, evalType, conditions=attr_dict['conditions'].default, actions=attr_dict['actions'].default, repeats=attr_dict['repeats'].default, stages=attr_dict['stages'].default):
    self.id = id
    self.name = name
    self.disabled = disabled
    self.parentId = parentId
    self.conditionType = conditionType
    self.evalType = evalType
    self.conditions = conditions
    self.actions = actions
    self.repeats = repeats
    self.stages = stages
    self.__attrs_post_init__()

TaskAction (ActionBase)

__attrs_init__(self, id, name, disabled, parentId, actionType, autoRun, taskId=None) special

Method generated by attrs for class TaskAction.

Source code in aqueduct/models/workflow.py
def __attrs_init__(self, id, name, disabled, parentId, actionType, autoRun, taskId=attr_dict['taskId'].default):
    self.id = id
    self.name = name
    self.disabled = disabled
    self.parentId = parentId
    self.actionType = actionType
    self.autoRun = autoRun
    self.taskId = taskId

Workflow

__attrs_init__(self, applicationId, permissions, uid, version, id, disabled, stages=[]) special

Method generated by attrs for class Workflow.

Source code in aqueduct/models/workflow.py
def __attrs_init__(self, applicationId, permissions, uid, version, id, disabled, stages=attr_dict['stages'].default):
    self.applicationId = applicationId
    self.permissions = permissions
    self.uid = uid
    self.version = version
    self.id = id
    self.disabled = disabled
    self.stages = stages
    self.__attrs_post_init__()

WorkflowBase

__attrs_init__(self, id, name, disabled, parentId) special

Method generated by attrs for class WorkflowBase.

Source code in aqueduct/models/workflow.py
def __attrs_init__(self, id, name, disabled, parentId):
    self.id = id
    self.name = name
    self.disabled = disabled
    self.parentId = parentId

workspace

Workspace

__attrs_init__(self, uid, id, disabled, name, version, createdDate, modifiedDate, description=None, permissions={}, createdByUser={}, modifiedByUser={}, dashboards=[], applications=[]) special

Method generated by attrs for class Workspace.

Source code in aqueduct/models/workspace.py
def __attrs_init__(self, uid, id, disabled, name, version, createdDate, modifiedDate, description=attr_dict['description'].default, permissions=attr_dict['permissions'].default, createdByUser=attr_dict['createdByUser'].default, modifiedByUser=attr_dict['modifiedByUser'].default, dashboards=attr_dict['dashboards'].default, applications=attr_dict['applications'].default):
    self.uid = uid
    self.id = id
    self.disabled = disabled
    self.name = name
    self.version = version
    self.createdDate = createdDate
    self.modifiedDate = modifiedDate
    self.description = description
    self.permissions = permissions
    self.createdByUser = createdByUser
    self.modifiedByUser = modifiedByUser
    self.dashboards = dashboards
    self.applications = applications

Application

__attrs_init__(self, description, acronym, trackingFieldId, maxTrackingId, name, fields, id, version, createdByUser={}, modifiedByUser={}, permissions={}, workspaces=None, createWorkspace=None, timeTrackingEnabled=None, selectionFields=None, uid=None, disabled=None, layout=[], *, createdDate, modifiedDate) special

Method generated by attrs for class Application.

Source code in aqueduct/models/application.py
def __attrs_init__(self, description, acronym, trackingFieldId, maxTrackingId, name, fields, id, version, createdByUser=attr_dict['createdByUser'].default, modifiedByUser=attr_dict['modifiedByUser'].default, permissions=attr_dict['permissions'].default, workspaces=attr_dict['workspaces'].default, createWorkspace=attr_dict['createWorkspace'].default, timeTrackingEnabled=attr_dict['timeTrackingEnabled'].default, selectionFields=attr_dict['selectionFields'].default, uid=attr_dict['uid'].default, disabled=attr_dict['disabled'].default, layout=attr_dict['layout'].default, *, createdDate, modifiedDate):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('description', description)
    _setattr('acronym', acronym)
    _setattr('trackingFieldId', trackingFieldId)
    _setattr('maxTrackingId', maxTrackingId)
    _setattr('name', name)
    _setattr('fields', fields)
    _setattr('id', id)
    _setattr('version', version)
    _setattr('createdDate', createdDate)
    _setattr('createdByUser', createdByUser)
    _setattr('modifiedByUser', modifiedByUser)
    _setattr('permissions', permissions)
    _setattr('modifiedDate', modifiedDate)
    _setattr('workspaces', workspaces)
    _setattr('createWorkspace', createWorkspace)
    _setattr('timeTrackingEnabled', timeTrackingEnabled)
    _setattr('selectionFields', selectionFields)
    _setattr('uid', uid)
    _setattr('disabled', disabled)
    _setattr('layout', layout)
    if _config._run_validators is True:
        __attr_validator_fields(self, __attr_fields, self.fields)
    self.__attrs_post_init__()

__setattr__(self, name, val) special

Method generated by attrs for class Application.

Source code in aqueduct/models/application.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

attachment

AttachmentField (BaseField)

__init__(self, name, id, key, maxSize, fieldType, required, readOnly, supportsMultipleOutputMappings) special

Method generated by attrs for class AttachmentField.

Source code in aqueduct/models/fields/attachment.py
def __init__(self, name, id, key, maxSize, fieldType, required, readOnly, supportsMultipleOutputMappings):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('maxSize', maxSize)
    _setattr('fieldType', fieldType)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)

__setattr__(self, name, val) special

Method generated by attrs for class AttachmentField.

Source code in aqueduct/models/fields/attachment.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

base

BaseField

__init__(self, name, id, key) special

Method generated by attrs for class BaseField.

Source code in aqueduct/models/fields/base.py
def __init__(self, name, id, key):
    self.name = name
    self.id = id
    self.key = key

comments

CommentsField (BaseField)

__init__(self, name, id, key, fieldType, supportsMultipleOutputMappings=None, required=None, readOnly=None) special

Method generated by attrs for class CommentsField.

Source code in aqueduct/models/fields/comments.py
def __init__(self, name, id, key, fieldType, supportsMultipleOutputMappings=attr_dict['supportsMultipleOutputMappings'].default, required=attr_dict['required'].default, readOnly=attr_dict['readOnly'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('fieldType', fieldType)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)

__setattr__(self, name, val) special

Method generated by attrs for class CommentsField.

Source code in aqueduct/models/fields/comments.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

datetime

BaseDateTimeFieldType (BaseField)

__init__(self, name, id, key, defaultValueType, calculatedDiff, fieldType, required, readOnly, supportsMultipleOutputMappings) special

Method generated by attrs for class BaseDateTimeFieldType.

Source code in aqueduct/models/fields/datetime.py
def __init__(self, name, id, key, defaultValueType, calculatedDiff, fieldType, required, readOnly, supportsMultipleOutputMappings):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('defaultValueType', defaultValueType)
    _setattr('calculatedDiff', calculatedDiff)
    _setattr('fieldType', fieldType)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)

__setattr__(self, name, val) special

Method generated by attrs for class BaseDateTimeFieldType.

Source code in aqueduct/models/fields/datetime.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

DateField (BaseDateTimeFieldType)

__init__(self, name, id, key, defaultValueType, calculatedDiff, fieldType, required, readOnly, supportsMultipleOutputMappings, inputType) special

Method generated by attrs for class DateField.

Source code in aqueduct/models/fields/datetime.py
def __init__(self, name, id, key, defaultValueType, calculatedDiff, fieldType, required, readOnly, supportsMultipleOutputMappings, inputType):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('defaultValueType', defaultValueType)
    _setattr('calculatedDiff', calculatedDiff)
    _setattr('fieldType', fieldType)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('inputType', inputType)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)

__setattr__(self, name, val) special

Method generated by attrs for class DateField.

Source code in aqueduct/models/fields/datetime.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

DateTimeField (BaseDateTimeFieldType)

__init__(self, name, id, key, defaultValueType, calculatedDiff, fieldType, supportsMultipleOutputMappings, inputType, futurePastType=None, futurePastValue=None, required=None, readOnly=None) special

Method generated by attrs for class DateTimeField.

Source code in aqueduct/models/fields/datetime.py
def __init__(self, name, id, key, defaultValueType, calculatedDiff, fieldType, supportsMultipleOutputMappings, inputType, futurePastType=attr_dict['futurePastType'].default, futurePastValue=attr_dict['futurePastValue'].default, required=attr_dict['required'].default, readOnly=attr_dict['readOnly'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('defaultValueType', defaultValueType)
    _setattr('calculatedDiff', calculatedDiff)
    _setattr('fieldType', fieldType)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('inputType', inputType)
    _setattr('futurePastType', futurePastType)
    _setattr('futurePastValue', futurePastValue)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)

__setattr__(self, name, val) special

Method generated by attrs for class DateTimeField.

Source code in aqueduct/models/fields/datetime.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

FirstCreatedField (BaseDateTimeFieldType)

__init__(self, name, id, key, defaultValueType, calculatedDiff, fieldType, required, readOnly, supportsMultipleOutputMappings, inputType) special

Method generated by attrs for class FirstCreatedField.

Source code in aqueduct/models/fields/datetime.py
def __init__(self, name, id, key, defaultValueType, calculatedDiff, fieldType, required, readOnly, supportsMultipleOutputMappings, inputType):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('defaultValueType', defaultValueType)
    _setattr('calculatedDiff', calculatedDiff)
    _setattr('fieldType', fieldType)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('inputType', inputType)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)

__setattr__(self, name, val) special

Method generated by attrs for class FirstCreatedField.

Source code in aqueduct/models/fields/datetime.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

LastUpdatedField (BaseDateTimeFieldType)

__init__(self, name, id, key, defaultValueType, calculatedDiff, fieldType, required, readOnly, supportsMultipleOutputMappings, inputType) special

Method generated by attrs for class LastUpdatedField.

Source code in aqueduct/models/fields/datetime.py
def __init__(self, name, id, key, defaultValueType, calculatedDiff, fieldType, required, readOnly, supportsMultipleOutputMappings, inputType):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('defaultValueType', defaultValueType)
    _setattr('calculatedDiff', calculatedDiff)
    _setattr('fieldType', fieldType)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('inputType', inputType)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)

__setattr__(self, name, val) special

Method generated by attrs for class LastUpdatedField.

Source code in aqueduct/models/fields/datetime.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

TimeField (BaseDateTimeFieldType)

__init__(self, name, id, key, defaultValueType, calculatedDiff, fieldType, required, readOnly, supportsMultipleOutputMappings, inputType) special

Method generated by attrs for class TimeField.

Source code in aqueduct/models/fields/datetime.py
def __init__(self, name, id, key, defaultValueType, calculatedDiff, fieldType, required, readOnly, supportsMultipleOutputMappings, inputType):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('defaultValueType', defaultValueType)
    _setattr('calculatedDiff', calculatedDiff)
    _setattr('fieldType', fieldType)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('inputType', inputType)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)

__setattr__(self, name, val) special

Method generated by attrs for class TimeField.

Source code in aqueduct/models/fields/datetime.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

TimespanField (BaseDateTimeFieldType)

__init__(self, name, id, key, defaultValueType, calculatedDiff, fieldType, required, readOnly, supportsMultipleOutputMappings, inputType) special

Method generated by attrs for class TimespanField.

Source code in aqueduct/models/fields/datetime.py
def __init__(self, name, id, key, defaultValueType, calculatedDiff, fieldType, required, readOnly, supportsMultipleOutputMappings, inputType):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('defaultValueType', defaultValueType)
    _setattr('calculatedDiff', calculatedDiff)
    _setattr('fieldType', fieldType)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('inputType', inputType)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)

__setattr__(self, name, val) special

Method generated by attrs for class TimespanField.

Source code in aqueduct/models/fields/datetime.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

history

HistoryField (BaseField)

__init__(self, name, id, key, fieldType, required, readOnly, supportsMultipleOutputMappings) special

Method generated by attrs for class HistoryField.

Source code in aqueduct/models/fields/history.py
def __init__(self, name, id, key, fieldType, required, readOnly, supportsMultipleOutputMappings):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('fieldType', fieldType)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)

__setattr__(self, name, val) special

Method generated by attrs for class HistoryField.

Source code in aqueduct/models/fields/history.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

list

BaseListFieldType (BaseField)

__init__(self, name, id, key, itemLengthType, itemStep, searchPath, searchPathIsArray, searchPathCollectionExtension, fieldType, required, readOnly, supportsMultipleOutputMappings) special

Method generated by attrs for class BaseListFieldType.

Source code in aqueduct/models/fields/list.py
def __init__(self, name, id, key, itemLengthType, itemStep, searchPath, searchPathIsArray, searchPathCollectionExtension, fieldType, required, readOnly, supportsMultipleOutputMappings):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('itemLengthType', itemLengthType)
    _setattr('itemStep', itemStep)
    _setattr('searchPath', searchPath)
    _setattr('searchPathIsArray', searchPathIsArray)
    _setattr('searchPathCollectionExtension', searchPathCollectionExtension)
    _setattr('fieldType', fieldType)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)

__setattr__(self, name, val) special

Method generated by attrs for class BaseListFieldType.

Source code in aqueduct/models/fields/list.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

NumericListField (BaseListFieldType)

__init__(self, name, id, key, itemLengthType, itemStep, searchPath, searchPathIsArray, searchPathCollectionExtension, fieldType, required, readOnly, supportsMultipleOutputMappings, inputType) special

Method generated by attrs for class NumericListField.

Source code in aqueduct/models/fields/list.py
def __init__(self, name, id, key, itemLengthType, itemStep, searchPath, searchPathIsArray, searchPathCollectionExtension, fieldType, required, readOnly, supportsMultipleOutputMappings, inputType):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('itemLengthType', itemLengthType)
    _setattr('itemStep', itemStep)
    _setattr('searchPath', searchPath)
    _setattr('searchPathIsArray', searchPathIsArray)
    _setattr('searchPathCollectionExtension', searchPathCollectionExtension)
    _setattr('fieldType', fieldType)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('inputType', inputType)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)

__setattr__(self, name, val) special

Method generated by attrs for class NumericListField.

Source code in aqueduct/models/fields/list.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

TextListField (BaseListFieldType)

__init__(self, name, id, key, itemLengthType, itemStep, searchPath, searchPathIsArray, searchPathCollectionExtension, fieldType, required, readOnly, supportsMultipleOutputMappings, inputType) special

Method generated by attrs for class TextListField.

Source code in aqueduct/models/fields/list.py
def __init__(self, name, id, key, itemLengthType, itemStep, searchPath, searchPathIsArray, searchPathCollectionExtension, fieldType, required, readOnly, supportsMultipleOutputMappings, inputType):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('itemLengthType', itemLengthType)
    _setattr('itemStep', itemStep)
    _setattr('searchPath', searchPath)
    _setattr('searchPathIsArray', searchPathIsArray)
    _setattr('searchPathCollectionExtension', searchPathCollectionExtension)
    _setattr('fieldType', fieldType)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('inputType', inputType)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)

__setattr__(self, name, val) special

Method generated by attrs for class TextListField.

Source code in aqueduct/models/fields/list.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

numeric

NumericField (BaseField)

__init__(self, name, id, key, step, unique, prefix, suffix, format, fieldType, required, readOnly, supportsMultipleOutputMappings) special

Method generated by attrs for class NumericField.

Source code in aqueduct/models/fields/numeric.py
def __init__(self, name, id, key, step, unique, prefix, suffix, format, fieldType, required, readOnly, supportsMultipleOutputMappings):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('step', step)
    _setattr('unique', unique)
    _setattr('prefix', prefix)
    _setattr('suffix', suffix)
    _setattr('format', format)
    _setattr('fieldType', fieldType)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)

__setattr__(self, name, val) special

Method generated by attrs for class NumericField.

Source code in aqueduct/models/fields/numeric.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

reference

BaseReferenceFieldType (BaseField)

__init__(self, name, id, key, targetId, columns, canAdd, createBackreference, fieldType, required, readOnly, supportsMultipleOutputMappings) special

Method generated by attrs for class BaseReferenceFieldType.

Source code in aqueduct/models/fields/reference.py
def __init__(self, name, id, key, targetId, columns, canAdd, createBackreference, fieldType, required, readOnly, supportsMultipleOutputMappings):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('targetId', targetId)
    _setattr('columns', columns)
    _setattr('canAdd', canAdd)
    _setattr('createBackreference', createBackreference)
    _setattr('fieldType', fieldType)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)

__setattr__(self, name, val) special

Method generated by attrs for class BaseReferenceFieldType.

Source code in aqueduct/models/fields/reference.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

GridReferenceField (BaseReferenceFieldType)

__init__(self, name, id, key, targetId, columns, canAdd, createBackreference, fieldType, required, readOnly, supportsMultipleOutputMappings, controlType, selectionType) special

Method generated by attrs for class GridReferenceField.

Source code in aqueduct/models/fields/reference.py
def __init__(self, name, id, key, targetId, columns, canAdd, createBackreference, fieldType, required, readOnly, supportsMultipleOutputMappings, controlType, selectionType):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('targetId', targetId)
    _setattr('columns', columns)
    _setattr('canAdd', canAdd)
    _setattr('createBackreference', createBackreference)
    _setattr('fieldType', fieldType)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('controlType', controlType)
    _setattr('selectionType', selectionType)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_controlType(self, __attr_controlType, self.controlType)
        __attr_validator_selectionType(self, __attr_selectionType, self.selectionType)

__setattr__(self, name, val) special

Method generated by attrs for class GridReferenceField.

Source code in aqueduct/models/fields/reference.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

MultiSelectReferenceField (BaseReferenceFieldType)

__init__(self, name, id, key, targetId, columns, canAdd, createBackreference, fieldType, required, readOnly, supportsMultipleOutputMappings, controlType, selectionType) special

Method generated by attrs for class MultiSelectReferenceField.

Source code in aqueduct/models/fields/reference.py
def __init__(self, name, id, key, targetId, columns, canAdd, createBackreference, fieldType, required, readOnly, supportsMultipleOutputMappings, controlType, selectionType):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('targetId', targetId)
    _setattr('columns', columns)
    _setattr('canAdd', canAdd)
    _setattr('createBackreference', createBackreference)
    _setattr('fieldType', fieldType)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('controlType', controlType)
    _setattr('selectionType', selectionType)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_controlType(self, __attr_controlType, self.controlType)
        __attr_validator_selectionType(self, __attr_selectionType, self.selectionType)

__setattr__(self, name, val) special

Method generated by attrs for class MultiSelectReferenceField.

Source code in aqueduct/models/fields/reference.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

SingleSelectReferenceField (BaseReferenceFieldType)

__init__(self, name, id, key, targetId, columns, canAdd, createBackreference, fieldType, required, readOnly, supportsMultipleOutputMappings, controlType, selectionType) special

Method generated by attrs for class SingleSelectReferenceField.

Source code in aqueduct/models/fields/reference.py
def __init__(self, name, id, key, targetId, columns, canAdd, createBackreference, fieldType, required, readOnly, supportsMultipleOutputMappings, controlType, selectionType):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('targetId', targetId)
    _setattr('columns', columns)
    _setattr('canAdd', canAdd)
    _setattr('createBackreference', createBackreference)
    _setattr('fieldType', fieldType)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('controlType', controlType)
    _setattr('selectionType', selectionType)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_controlType(self, __attr_controlType, self.controlType)
        __attr_validator_selectionType(self, __attr_selectionType, self.selectionType)

__setattr__(self, name, val) special

Method generated by attrs for class SingleSelectReferenceField.

Source code in aqueduct/models/fields/reference.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

text

BaseTextFieldType (BaseField)

__init__(self, name, id, key, lengthType, visualize, visualizeMode, required, readOnly, supportsMultipleOutputMappings, fieldType) special

Method generated by attrs for class BaseTextFieldType.

Source code in aqueduct/models/fields/text.py
def __init__(self, name, id, key, lengthType, visualize, visualizeMode, required, readOnly, supportsMultipleOutputMappings, fieldType):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('lengthType', lengthType)
    _setattr('visualize', visualize)
    _setattr('visualizeMode', visualizeMode)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('fieldType', fieldType)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)

__setattr__(self, name, val) special

Method generated by attrs for class BaseTextFieldType.

Source code in aqueduct/models/fields/text.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

EmailField (BaseTextFieldType)

__init__(self, name, id, key, lengthType, visualize, visualizeMode, required, readOnly, supportsMultipleOutputMappings, fieldType, inputType, prefix=None, suffix=None, placeholder=None, unique=None) special

Method generated by attrs for class EmailField.

Source code in aqueduct/models/fields/text.py
def __init__(self, name, id, key, lengthType, visualize, visualizeMode, required, readOnly, supportsMultipleOutputMappings, fieldType, inputType, prefix=attr_dict['prefix'].default, suffix=attr_dict['suffix'].default, placeholder=attr_dict['placeholder'].default, unique=attr_dict['unique'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('lengthType', lengthType)
    _setattr('visualize', visualize)
    _setattr('visualizeMode', visualizeMode)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('fieldType', fieldType)
    _setattr('inputType', inputType)
    _setattr('prefix', prefix)
    _setattr('suffix', suffix)
    _setattr('placeholder', placeholder)
    _setattr('unique', unique)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)

__setattr__(self, name, val) special

Method generated by attrs for class EmailField.

Source code in aqueduct/models/fields/text.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

IPField (BaseTextFieldType)

__init__(self, name, id, key, lengthType, visualize, visualizeMode, required, readOnly, supportsMultipleOutputMappings, fieldType, inputType, prefix=None, suffix=None, placeholder=None, unique=None) special

Method generated by attrs for class IPField.

Source code in aqueduct/models/fields/text.py
def __init__(self, name, id, key, lengthType, visualize, visualizeMode, required, readOnly, supportsMultipleOutputMappings, fieldType, inputType, prefix=attr_dict['prefix'].default, suffix=attr_dict['suffix'].default, placeholder=attr_dict['placeholder'].default, unique=attr_dict['unique'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('lengthType', lengthType)
    _setattr('visualize', visualize)
    _setattr('visualizeMode', visualizeMode)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('fieldType', fieldType)
    _setattr('inputType', inputType)
    _setattr('prefix', prefix)
    _setattr('suffix', suffix)
    _setattr('placeholder', placeholder)
    _setattr('unique', unique)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)

__setattr__(self, name, val) special

Method generated by attrs for class IPField.

Source code in aqueduct/models/fields/text.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

JSONField (BaseTextFieldType)

__init__(self, name, id, key, lengthType, visualize, visualizeMode, required, readOnly, supportsMultipleOutputMappings, fieldType, inputType, prefix=None, suffix=None, placeholder=None, unique=None) special

Method generated by attrs for class JSONField.

Source code in aqueduct/models/fields/text.py
def __init__(self, name, id, key, lengthType, visualize, visualizeMode, required, readOnly, supportsMultipleOutputMappings, fieldType, inputType, prefix=attr_dict['prefix'].default, suffix=attr_dict['suffix'].default, placeholder=attr_dict['placeholder'].default, unique=attr_dict['unique'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('lengthType', lengthType)
    _setattr('visualize', visualize)
    _setattr('visualizeMode', visualizeMode)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('fieldType', fieldType)
    _setattr('inputType', inputType)
    _setattr('prefix', prefix)
    _setattr('suffix', suffix)
    _setattr('placeholder', placeholder)
    _setattr('unique', unique)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)

__setattr__(self, name, val) special

Method generated by attrs for class JSONField.

Source code in aqueduct/models/fields/text.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

MultilineField (BaseTextFieldType)

__init__(self, name, id, key, lengthType, visualize, visualizeMode, required, readOnly, supportsMultipleOutputMappings, fieldType, inputType, prefix=None, suffix=None, placeholder=None, unique=None) special

Method generated by attrs for class MultilineField.

Source code in aqueduct/models/fields/text.py
def __init__(self, name, id, key, lengthType, visualize, visualizeMode, required, readOnly, supportsMultipleOutputMappings, fieldType, inputType, prefix=attr_dict['prefix'].default, suffix=attr_dict['suffix'].default, placeholder=attr_dict['placeholder'].default, unique=attr_dict['unique'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('lengthType', lengthType)
    _setattr('visualize', visualize)
    _setattr('visualizeMode', visualizeMode)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('fieldType', fieldType)
    _setattr('inputType', inputType)
    _setattr('prefix', prefix)
    _setattr('suffix', suffix)
    _setattr('placeholder', placeholder)
    _setattr('unique', unique)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)

__setattr__(self, name, val) special

Method generated by attrs for class MultilineField.

Source code in aqueduct/models/fields/text.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

RichTextField (BaseTextFieldType)

__init__(self, name, id, key, lengthType, visualize, visualizeMode, required, readOnly, supportsMultipleOutputMappings, fieldType, inputType, prefix=None, suffix=None, placeholder=None, unique=None) special

Method generated by attrs for class RichTextField.

Source code in aqueduct/models/fields/text.py
def __init__(self, name, id, key, lengthType, visualize, visualizeMode, required, readOnly, supportsMultipleOutputMappings, fieldType, inputType, prefix=attr_dict['prefix'].default, suffix=attr_dict['suffix'].default, placeholder=attr_dict['placeholder'].default, unique=attr_dict['unique'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('lengthType', lengthType)
    _setattr('visualize', visualize)
    _setattr('visualizeMode', visualizeMode)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('fieldType', fieldType)
    _setattr('inputType', inputType)
    _setattr('prefix', prefix)
    _setattr('suffix', suffix)
    _setattr('placeholder', placeholder)
    _setattr('unique', unique)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)

__setattr__(self, name, val) special

Method generated by attrs for class RichTextField.

Source code in aqueduct/models/fields/text.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

TelephoneField (BaseTextFieldType)

__init__(self, name, id, key, lengthType, visualize, visualizeMode, required, readOnly, supportsMultipleOutputMappings, fieldType, inputType, prefix=None, suffix=None, placeholder=None, unique=None) special

Method generated by attrs for class TelephoneField.

Source code in aqueduct/models/fields/text.py
def __init__(self, name, id, key, lengthType, visualize, visualizeMode, required, readOnly, supportsMultipleOutputMappings, fieldType, inputType, prefix=attr_dict['prefix'].default, suffix=attr_dict['suffix'].default, placeholder=attr_dict['placeholder'].default, unique=attr_dict['unique'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('lengthType', lengthType)
    _setattr('visualize', visualize)
    _setattr('visualizeMode', visualizeMode)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('fieldType', fieldType)
    _setattr('inputType', inputType)
    _setattr('prefix', prefix)
    _setattr('suffix', suffix)
    _setattr('placeholder', placeholder)
    _setattr('unique', unique)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)

__setattr__(self, name, val) special

Method generated by attrs for class TelephoneField.

Source code in aqueduct/models/fields/text.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

TextField (BaseTextFieldType)

__init__(self, name, id, key, lengthType, visualize, visualizeMode, required, readOnly, supportsMultipleOutputMappings, fieldType, inputType, prefix=None, suffix=None, placeholder=None, unique=None) special

Method generated by attrs for class TextField.

Source code in aqueduct/models/fields/text.py
def __init__(self, name, id, key, lengthType, visualize, visualizeMode, required, readOnly, supportsMultipleOutputMappings, fieldType, inputType, prefix=attr_dict['prefix'].default, suffix=attr_dict['suffix'].default, placeholder=attr_dict['placeholder'].default, unique=attr_dict['unique'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('lengthType', lengthType)
    _setattr('visualize', visualize)
    _setattr('visualizeMode', visualizeMode)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('fieldType', fieldType)
    _setattr('inputType', inputType)
    _setattr('prefix', prefix)
    _setattr('suffix', suffix)
    _setattr('placeholder', placeholder)
    _setattr('unique', unique)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)

__setattr__(self, name, val) special

Method generated by attrs for class TextField.

Source code in aqueduct/models/fields/text.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

UrlField (BaseTextFieldType)

__init__(self, name, id, key, lengthType, visualize, visualizeMode, required, readOnly, supportsMultipleOutputMappings, fieldType, inputType, prefix=None, suffix=None, placeholder=None, unique=None) special

Method generated by attrs for class UrlField.

Source code in aqueduct/models/fields/text.py
def __init__(self, name, id, key, lengthType, visualize, visualizeMode, required, readOnly, supportsMultipleOutputMappings, fieldType, inputType, prefix=attr_dict['prefix'].default, suffix=attr_dict['suffix'].default, placeholder=attr_dict['placeholder'].default, unique=attr_dict['unique'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('lengthType', lengthType)
    _setattr('visualize', visualize)
    _setattr('visualizeMode', visualizeMode)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('fieldType', fieldType)
    _setattr('inputType', inputType)
    _setattr('prefix', prefix)
    _setattr('suffix', suffix)
    _setattr('placeholder', placeholder)
    _setattr('unique', unique)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)

__setattr__(self, name, val) special

Method generated by attrs for class UrlField.

Source code in aqueduct/models/fields/text.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

tracking

TrackingField (BaseField)

__init__(self, name, id, key, prefix, fieldType, readOnly, supportsMultipleOutputMappings) special

Method generated by attrs for class TrackingField.

Source code in aqueduct/models/fields/tracking.py
def __init__(self, name, id, key, prefix, fieldType, readOnly, supportsMultipleOutputMappings):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('prefix', prefix)
    _setattr('fieldType', fieldType)
    _setattr('readOnly', readOnly)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)

__setattr__(self, name, val) special

Method generated by attrs for class TrackingField.

Source code in aqueduct/models/fields/tracking.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

usergroup

BaseUserGroupFieldType (BaseField)

__init__(self, name, id, key, showAllUsers, showAllGroups, members, defaults, searchPath, searchPathIsArray, sortPath, fieldType, supportsMultipleOutputMappings) special

Method generated by attrs for class BaseUserGroupFieldType.

Source code in aqueduct/models/fields/usergroup.py
def __init__(self, name, id, key, showAllUsers, showAllGroups, members, defaults, searchPath, searchPathIsArray, sortPath, fieldType, supportsMultipleOutputMappings):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('showAllUsers', showAllUsers)
    _setattr('showAllGroups', showAllGroups)
    _setattr('members', members)
    _setattr('defaults', defaults)
    _setattr('searchPath', searchPath)
    _setattr('searchPathIsArray', searchPathIsArray)
    _setattr('sortPath', sortPath)
    _setattr('fieldType', fieldType)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)

__setattr__(self, name, val) special

Method generated by attrs for class BaseUserGroupFieldType.

Source code in aqueduct/models/fields/usergroup.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

CreatedByField (BaseUserGroupFieldType)

__init__(self, name, id, key, showAllUsers, showAllGroups, members, defaults, searchPath, searchPathIsArray, sortPath, fieldType, supportsMultipleOutputMappings, inputType, controlType, selectionType, searchPathCollectionExtension=None, required=None, readOnly=None, reverseValueMap={}) special

Method generated by attrs for class CreatedByField.

Source code in aqueduct/models/fields/usergroup.py
def __init__(self, name, id, key, showAllUsers, showAllGroups, members, defaults, searchPath, searchPathIsArray, sortPath, fieldType, supportsMultipleOutputMappings, inputType, controlType, selectionType, searchPathCollectionExtension=attr_dict['searchPathCollectionExtension'].default, required=attr_dict['required'].default, readOnly=attr_dict['readOnly'].default, reverseValueMap=attr_dict['reverseValueMap'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('showAllUsers', showAllUsers)
    _setattr('showAllGroups', showAllGroups)
    _setattr('members', members)
    _setattr('defaults', defaults)
    _setattr('searchPath', searchPath)
    _setattr('searchPathIsArray', searchPathIsArray)
    _setattr('sortPath', sortPath)
    _setattr('fieldType', fieldType)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('inputType', inputType)
    _setattr('controlType', controlType)
    _setattr('selectionType', selectionType)
    _setattr('searchPathCollectionExtension', searchPathCollectionExtension)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('reverseValueMap', reverseValueMap)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)
        __attr_validator_controlType(self, __attr_controlType, self.controlType)
        __attr_validator_selectionType(self, __attr_selectionType, self.selectionType)

__setattr__(self, name, val) special

Method generated by attrs for class CreatedByField.

Source code in aqueduct/models/fields/usergroup.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

LastUpdatedByField (BaseUserGroupFieldType)

__init__(self, name, id, key, showAllUsers, showAllGroups, members, defaults, searchPath, searchPathIsArray, sortPath, fieldType, supportsMultipleOutputMappings, inputType, controlType, selectionType, searchPathCollectionExtension=None, required=None, readOnly=None, reverseValueMap={}) special

Method generated by attrs for class LastUpdatedByField.

Source code in aqueduct/models/fields/usergroup.py
def __init__(self, name, id, key, showAllUsers, showAllGroups, members, defaults, searchPath, searchPathIsArray, sortPath, fieldType, supportsMultipleOutputMappings, inputType, controlType, selectionType, searchPathCollectionExtension=attr_dict['searchPathCollectionExtension'].default, required=attr_dict['required'].default, readOnly=attr_dict['readOnly'].default, reverseValueMap=attr_dict['reverseValueMap'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('showAllUsers', showAllUsers)
    _setattr('showAllGroups', showAllGroups)
    _setattr('members', members)
    _setattr('defaults', defaults)
    _setattr('searchPath', searchPath)
    _setattr('searchPathIsArray', searchPathIsArray)
    _setattr('sortPath', sortPath)
    _setattr('fieldType', fieldType)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('inputType', inputType)
    _setattr('controlType', controlType)
    _setattr('selectionType', selectionType)
    _setattr('searchPathCollectionExtension', searchPathCollectionExtension)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    _setattr('reverseValueMap', reverseValueMap)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)
        __attr_validator_controlType(self, __attr_controlType, self.controlType)
        __attr_validator_selectionType(self, __attr_selectionType, self.selectionType)

__setattr__(self, name, val) special

Method generated by attrs for class LastUpdatedByField.

Source code in aqueduct/models/fields/usergroup.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

UserGroupField (BaseUserGroupFieldType)

__init__(self, name, id, key, showAllUsers, showAllGroups, members, defaults, searchPath, searchPathIsArray, sortPath, fieldType, supportsMultipleOutputMappings, inputType, controlType, selectionType, searchPathCollectionExtension=None, required=None, readOnly=None) special

Method generated by attrs for class UserGroupField.

Source code in aqueduct/models/fields/usergroup.py
def __init__(self, name, id, key, showAllUsers, showAllGroups, members, defaults, searchPath, searchPathIsArray, sortPath, fieldType, supportsMultipleOutputMappings, inputType, controlType, selectionType, searchPathCollectionExtension=attr_dict['searchPathCollectionExtension'].default, required=attr_dict['required'].default, readOnly=attr_dict['readOnly'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('showAllUsers', showAllUsers)
    _setattr('showAllGroups', showAllGroups)
    _setattr('members', members)
    _setattr('defaults', defaults)
    _setattr('searchPath', searchPath)
    _setattr('searchPathIsArray', searchPathIsArray)
    _setattr('sortPath', sortPath)
    _setattr('fieldType', fieldType)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('inputType', inputType)
    _setattr('controlType', controlType)
    _setattr('selectionType', selectionType)
    _setattr('searchPathCollectionExtension', searchPathCollectionExtension)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)
        __attr_validator_controlType(self, __attr_controlType, self.controlType)
        __attr_validator_selectionType(self, __attr_selectionType, self.selectionType)

__setattr__(self, name, val) special

Method generated by attrs for class UserGroupField.

Source code in aqueduct/models/fields/usergroup.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

UsersGroupsField (BaseUserGroupFieldType)

__init__(self, name, id, key, showAllUsers, showAllGroups, members, defaults, searchPath, searchPathIsArray, sortPath, fieldType, supportsMultipleOutputMappings, inputType, controlType, selectionType, searchPathCollectionExtension=None, required=None, readOnly=None) special

Method generated by attrs for class UsersGroupsField.

Source code in aqueduct/models/fields/usergroup.py
def __init__(self, name, id, key, showAllUsers, showAllGroups, members, defaults, searchPath, searchPathIsArray, sortPath, fieldType, supportsMultipleOutputMappings, inputType, controlType, selectionType, searchPathCollectionExtension=attr_dict['searchPathCollectionExtension'].default, required=attr_dict['required'].default, readOnly=attr_dict['readOnly'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('showAllUsers', showAllUsers)
    _setattr('showAllGroups', showAllGroups)
    _setattr('members', members)
    _setattr('defaults', defaults)
    _setattr('searchPath', searchPath)
    _setattr('searchPathIsArray', searchPathIsArray)
    _setattr('sortPath', sortPath)
    _setattr('fieldType', fieldType)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('inputType', inputType)
    _setattr('controlType', controlType)
    _setattr('selectionType', selectionType)
    _setattr('searchPathCollectionExtension', searchPathCollectionExtension)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_inputType(self, __attr_inputType, self.inputType)
        __attr_validator_controlType(self, __attr_controlType, self.controlType)
        __attr_validator_selectionType(self, __attr_selectionType, self.selectionType)

__setattr__(self, name, val) special

Method generated by attrs for class UsersGroupsField.

Source code in aqueduct/models/fields/usergroup.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

valueslist

BaseFieldValuesListType

__init__(self, id, name, selected, description=None, otherText=None, otherTextDescription=None, otherTextDefaultValue=None, otherTextRequired=None) special

Method generated by attrs for class BaseFieldValuesListType.

Source code in aqueduct/models/fields/valueslist.py
def __init__(self, id, name, selected, description=attr_dict['description'].default, otherText=attr_dict['otherText'].default, otherTextDescription=attr_dict['otherTextDescription'].default, otherTextDefaultValue=attr_dict['otherTextDefaultValue'].default, otherTextRequired=attr_dict['otherTextRequired'].default):
    self.id = id
    self.name = name
    self.selected = selected
    self.description = description
    self.otherText = otherText
    self.otherTextDescription = otherTextDescription
    self.otherTextDefaultValue = otherTextDefaultValue
    self.otherTextRequired = otherTextRequired

BaseValuesListFieldType (BaseField)

__init__(self, name, id, key, valueMap, searchPath, searchPathIsArray, searchPathCollectionExtension, sortPath, fieldType, supportsMultipleOutputMappings) special

Method generated by attrs for class BaseValuesListFieldType.

Source code in aqueduct/models/fields/valueslist.py
def __init__(self, name, id, key, valueMap, searchPath, searchPathIsArray, searchPathCollectionExtension, sortPath, fieldType, supportsMultipleOutputMappings):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('valueMap', valueMap)
    _setattr('searchPath', searchPath)
    _setattr('searchPathIsArray', searchPathIsArray)
    _setattr('searchPathCollectionExtension', searchPathCollectionExtension)
    _setattr('sortPath', sortPath)
    _setattr('fieldType', fieldType)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)

__setattr__(self, name, val) special

Method generated by attrs for class BaseValuesListFieldType.

Source code in aqueduct/models/fields/valueslist.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

CheckboxField (BaseValuesListFieldType)

__init__(self, name, id, key, valueMap, searchPath, searchPathIsArray, searchPathCollectionExtension, sortPath, fieldType, supportsMultipleOutputMappings, controlType, selectionType, values=[], required=None, readOnly=None) special

Method generated by attrs for class CheckboxField.

Source code in aqueduct/models/fields/valueslist.py
def __init__(self, name, id, key, valueMap, searchPath, searchPathIsArray, searchPathCollectionExtension, sortPath, fieldType, supportsMultipleOutputMappings, controlType, selectionType, values=attr_dict['values'].default, required=attr_dict['required'].default, readOnly=attr_dict['readOnly'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('valueMap', valueMap)
    _setattr('searchPath', searchPath)
    _setattr('searchPathIsArray', searchPathIsArray)
    _setattr('searchPathCollectionExtension', searchPathCollectionExtension)
    _setattr('sortPath', sortPath)
    _setattr('fieldType', fieldType)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('controlType', controlType)
    _setattr('selectionType', selectionType)
    _setattr('values', values)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_controlType(self, __attr_controlType, self.controlType)
        __attr_validator_selectionType(self, __attr_selectionType, self.selectionType)

__setattr__(self, name, val) special

Method generated by attrs for class CheckboxField.

Source code in aqueduct/models/fields/valueslist.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

MultiSelectField (BaseValuesListFieldType)

__init__(self, name, id, key, valueMap, searchPath, searchPathIsArray, searchPathCollectionExtension, sortPath, fieldType, supportsMultipleOutputMappings, controlType, selectionType, values=[], required=None, readOnly=None) special

Method generated by attrs for class MultiSelectField.

Source code in aqueduct/models/fields/valueslist.py
def __init__(self, name, id, key, valueMap, searchPath, searchPathIsArray, searchPathCollectionExtension, sortPath, fieldType, supportsMultipleOutputMappings, controlType, selectionType, values=attr_dict['values'].default, required=attr_dict['required'].default, readOnly=attr_dict['readOnly'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('valueMap', valueMap)
    _setattr('searchPath', searchPath)
    _setattr('searchPathIsArray', searchPathIsArray)
    _setattr('searchPathCollectionExtension', searchPathCollectionExtension)
    _setattr('sortPath', sortPath)
    _setattr('fieldType', fieldType)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('controlType', controlType)
    _setattr('selectionType', selectionType)
    _setattr('values', values)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_controlType(self, __attr_controlType, self.controlType)
        __attr_validator_selectionType(self, __attr_selectionType, self.selectionType)

__setattr__(self, name, val) special

Method generated by attrs for class MultiSelectField.

Source code in aqueduct/models/fields/valueslist.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

RadioButtonField (BaseValuesListFieldType)

__init__(self, name, id, key, valueMap, searchPath, searchPathIsArray, searchPathCollectionExtension, sortPath, fieldType, supportsMultipleOutputMappings, controlType, selectionType, values=[], required=None, readOnly=None) special

Method generated by attrs for class RadioButtonField.

Source code in aqueduct/models/fields/valueslist.py
def __init__(self, name, id, key, valueMap, searchPath, searchPathIsArray, searchPathCollectionExtension, sortPath, fieldType, supportsMultipleOutputMappings, controlType, selectionType, values=attr_dict['values'].default, required=attr_dict['required'].default, readOnly=attr_dict['readOnly'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('valueMap', valueMap)
    _setattr('searchPath', searchPath)
    _setattr('searchPathIsArray', searchPathIsArray)
    _setattr('searchPathCollectionExtension', searchPathCollectionExtension)
    _setattr('sortPath', sortPath)
    _setattr('fieldType', fieldType)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('controlType', controlType)
    _setattr('selectionType', selectionType)
    _setattr('values', values)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_controlType(self, __attr_controlType, self.controlType)
        __attr_validator_selectionType(self, __attr_selectionType, self.selectionType)

__setattr__(self, name, val) special

Method generated by attrs for class RadioButtonField.

Source code in aqueduct/models/fields/valueslist.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

SingleSelectField (BaseValuesListFieldType)

__init__(self, name, id, key, valueMap, searchPath, searchPathIsArray, searchPathCollectionExtension, sortPath, fieldType, supportsMultipleOutputMappings, controlType, selectionType, values=[], required=None, readOnly=None) special

Method generated by attrs for class SingleSelectField.

Source code in aqueduct/models/fields/valueslist.py
def __init__(self, name, id, key, valueMap, searchPath, searchPathIsArray, searchPathCollectionExtension, sortPath, fieldType, supportsMultipleOutputMappings, controlType, selectionType, values=attr_dict['values'].default, required=attr_dict['required'].default, readOnly=attr_dict['readOnly'].default):
    _setattr = _cached_setattr.__get__(self, self.__class__)
    _setattr('name', name)
    _setattr('id', id)
    _setattr('key', key)
    _setattr('valueMap', valueMap)
    _setattr('searchPath', searchPath)
    _setattr('searchPathIsArray', searchPathIsArray)
    _setattr('searchPathCollectionExtension', searchPathCollectionExtension)
    _setattr('sortPath', sortPath)
    _setattr('fieldType', fieldType)
    _setattr('supportsMultipleOutputMappings', supportsMultipleOutputMappings)
    _setattr('controlType', controlType)
    _setattr('selectionType', selectionType)
    _setattr('values', values)
    _setattr('required', required)
    _setattr('readOnly', readOnly)
    if _config._run_validators is True:
        __attr_validator_fieldType(self, __attr_fieldType, self.fieldType)
        __attr_validator_controlType(self, __attr_controlType, self.controlType)
        __attr_validator_selectionType(self, __attr_selectionType, self.selectionType)

__setattr__(self, name, val) special

Method generated by attrs for class SingleSelectField.

Source code in aqueduct/models/fields/valueslist.py
def __setattr__(self, name, val):
    try:
        a, hook = sa_attrs[name]
    except KeyError:
        nval = val
    else:
        nval = hook(self, a, val)

    _obj_setattr(self, name, nval)

Dashboard

__attrs_init__(self, workspaces, timelineEnabled, minTimelineDate, maxTimelineDate, createdDate, modifiedDate, uid, version, id, name, disabled, description=None, allowed=[], permissions={}, createdByUser={}, modifiedByUser={}, timelineFilters={}, items=[]) special

Method generated by attrs for class Dashboard.

Source code in aqueduct/models/dashboard.py
def __attrs_init__(self, workspaces, timelineEnabled, minTimelineDate, maxTimelineDate, createdDate, modifiedDate, uid, version, id, name, disabled, description=attr_dict['description'].default, allowed=attr_dict['allowed'].default, permissions=attr_dict['permissions'].default, createdByUser=attr_dict['createdByUser'].default, modifiedByUser=attr_dict['modifiedByUser'].default, timelineFilters=attr_dict['timelineFilters'].default, items=attr_dict['items'].default):
    self.workspaces = workspaces
    self.timelineEnabled = timelineEnabled
    self.minTimelineDate = minTimelineDate
    self.maxTimelineDate = maxTimelineDate
    self.createdDate = createdDate
    self.modifiedDate = modifiedDate
    self.uid = uid
    self.version = version
    self.id = id
    self.name = name
    self.disabled = disabled
    self.description = description
    self.allowed = allowed
    self.permissions = permissions
    self.createdByUser = createdByUser
    self.modifiedByUser = modifiedByUser
    self.timelineFilters = timelineFilters
    self.items = items
    self.__attrs_post_init__()

ReportItems

__init__(self, cardType, id, name, row, col, sizeX, sizeY, reportId=NOTHING, autoRefreshMilliseconds=NOTHING, description=NOTHING, measure=NOTHING, dateFilter=NOTHING, appsFilter=NOTHING, colorScheme=NOTHING, src=NOTHING) special

Method generated by attrs for class ReportItems.

Source code in aqueduct/models/dashboard.py
def __init__(self, cardType, id, name, row, col, sizeX, sizeY, reportId=NOTHING, autoRefreshMilliseconds=NOTHING, description=NOTHING, measure=NOTHING, dateFilter=NOTHING, appsFilter=NOTHING, colorScheme=NOTHING, src=NOTHING):
    self.cardType = cardType
    self.id = id
    self.name = name
    self.row = row
    self.col = col
    self.sizeX = sizeX
    self.sizeY = sizeY
    if reportId is not NOTHING:
        self.reportId = reportId
    else:
        self.reportId = __attr_factory_reportId()
    if autoRefreshMilliseconds is not NOTHING:
        self.autoRefreshMilliseconds = autoRefreshMilliseconds
    else:
        self.autoRefreshMilliseconds = __attr_factory_autoRefreshMilliseconds()
    if description is not NOTHING:
        self.description = description
    else:
        self.description = __attr_factory_description()
    if measure is not NOTHING:
        self.measure = measure
    else:
        self.measure = __attr_factory_measure()
    if dateFilter is not NOTHING:
        self.dateFilter = dateFilter
    else:
        self.dateFilter = __attr_factory_dateFilter()
    if appsFilter is not NOTHING:
        self.appsFilter = appsFilter
    else:
        self.appsFilter = __attr_factory_appsFilter()
    if colorScheme is not NOTHING:
        self.colorScheme = colorScheme
    else:
        self.colorScheme = __attr_factory_colorScheme()
    if src is not NOTHING:
        self.src = src
    else:
        self.src = __attr_factory_src()

Group

A Swimlane Group object model

__attrs_init__(self, disabled, id, name, description='', createdByUser={}, createdDate='', modifiedByUser={}, modifiedDate='', permissions={}, roles=[], users=[], groups=[]) special

Method generated by attrs for class Group.

Source code in aqueduct/models/group.py
def __attrs_init__(self, disabled, id, name, description=attr_dict['description'].default, createdByUser=attr_dict['createdByUser'].default, createdDate=attr_dict['createdDate'].default, modifiedByUser=attr_dict['modifiedByUser'].default, modifiedDate=attr_dict['modifiedDate'].default, permissions=attr_dict['permissions'].default, roles=attr_dict['roles'].default, users=attr_dict['users'].default, groups=attr_dict['groups'].default):
    self.disabled = disabled
    self.id = id
    self.name = name
    self.description = description
    self.createdByUser = createdByUser
    self.createdDate = createdDate
    self.modifiedByUser = modifiedByUser
    self.modifiedDate = modifiedDate
    self.permissions = permissions
    self.roles = roles
    self.users = users
    self.groups = groups
    self.__attrs_post_init__()

Package

__attrs_init__(self, author, authorEmail, disabled, homePage, id, license, name, pythonVersion, requires, summary, version, fileId=None) special

Method generated by attrs for class Package.

Source code in aqueduct/models/package.py
def __attrs_init__(self, author, authorEmail, disabled, homePage, id, license, name, pythonVersion, requires, summary, version, fileId=attr_dict['fileId'].default):
    self.author = author
    self.authorEmail = authorEmail
    self.disabled = disabled
    self.homePage = homePage
    self.id = id
    self.license = license
    self.name = name
    self.pythonVersion = pythonVersion
    self.requires = requires
    self.summary = summary
    self.version = version
    self.fileId = fileId

ActionDescriptor

__attrs_init__(self, name, base64Image, description, pythonVersion, disabled, id, actionType, readonly, availableOutputTypes, modifiedDate, createdDate, imageId=None, scriptFile=None, version=None, script=None, licenses=[], packageDescriptor={}, pythonDependencies={}, inputParameters={}, availableOutputVariables={}, family=None, assetDependencyType=None, assetDependencyVersion=None) special

Method generated by attrs for class ActionDescriptor.

Source code in aqueduct/models/plugin.py
def __attrs_init__(self, name, base64Image, description, pythonVersion, disabled, id, actionType, readonly, availableOutputTypes, modifiedDate, createdDate, imageId=attr_dict['imageId'].default, scriptFile=attr_dict['scriptFile'].default, version=attr_dict['version'].default, script=attr_dict['script'].default, licenses=attr_dict['licenses'].default, packageDescriptor=attr_dict['packageDescriptor'].default, pythonDependencies=attr_dict['pythonDependencies'].default, inputParameters=attr_dict['inputParameters'].default, availableOutputVariables=attr_dict['availableOutputVariables'].default, family=attr_dict['family'].default, assetDependencyType=attr_dict['assetDependencyType'].default, assetDependencyVersion=attr_dict['assetDependencyVersion'].default):
    self.name = name
    self.base64Image = base64Image
    self.description = description
    self.pythonVersion = pythonVersion
    self.disabled = disabled
    self.id = id
    self.actionType = actionType
    self.readonly = readonly
    self.availableOutputTypes = availableOutputTypes
    self.modifiedDate = modifiedDate
    self.createdDate = createdDate
    self.imageId = imageId
    self.scriptFile = scriptFile
    self.version = version
    self.script = script
    self.licenses = licenses
    self.packageDescriptor = packageDescriptor
    self.pythonDependencies = pythonDependencies
    self.inputParameters = inputParameters
    self.availableOutputVariables = availableOutputVariables
    self.family = family
    self.assetDependencyType = assetDependencyType
    self.assetDependencyVersion = assetDependencyVersion
    self.__attrs_post_init__()

AssetDescriptor (BaseDescriptor)

__attrs_init__(self, name, base64Image, description, version, pythonVersion, disabled, id, type, testScript, testScriptFile, imageId, packageDescriptor={}, inputParameters={}, family=None) special

Method generated by attrs for class AssetDescriptor.

Source code in aqueduct/models/plugin.py
def __attrs_init__(self, name, base64Image, description, version, pythonVersion, disabled, id, type, testScript, testScriptFile, imageId, packageDescriptor=attr_dict['packageDescriptor'].default, inputParameters=attr_dict['inputParameters'].default, family=attr_dict['family'].default):
    self.name = name
    self.base64Image = base64Image
    self.description = description
    self.version = version
    self.pythonVersion = pythonVersion
    self.disabled = disabled
    self.id = id
    self.type = type
    self.testScript = testScript
    self.testScriptFile = testScriptFile
    self.imageId = imageId
    self.packageDescriptor = packageDescriptor
    self.inputParameters = inputParameters
    self.family = family

BaseDescriptor

__attrs_init__(self, name, base64Image, description, version, pythonVersion, disabled, id) special

Method generated by attrs for class BaseDescriptor.

Source code in aqueduct/models/plugin.py
def __attrs_init__(self, name, base64Image, description, version, pythonVersion, disabled, id):
    self.name = name
    self.base64Image = base64Image
    self.description = description
    self.version = version
    self.pythonVersion = pythonVersion
    self.disabled = disabled
    self.id = id

License

__attrs_init__(self, package, license) special

Method generated by attrs for class License.

Source code in aqueduct/models/plugin.py
def __attrs_init__(self, package, license):
    self.package = package
    self.license = license

PackageDescriptor (Plugin)

__attrs_init__(self, name, base64Image, description, version, pythonVersion, disabled, id, author, modifiedDate, createdDate, authorEmail, url, packages, fileId, isEmailBundle, vendor, product, readme, changeLog, supportedSwimlaneVersion=NOTHING, availableActionDescriptors=[], assetDescriptors=[], family=None) special

Method generated by attrs for class PackageDescriptor.

Source code in aqueduct/models/plugin.py
def __attrs_init__(self, name, base64Image, description, version, pythonVersion, disabled, id, author, modifiedDate, createdDate, authorEmail, url, packages, fileId, isEmailBundle, vendor, product, readme, changeLog, supportedSwimlaneVersion=NOTHING, availableActionDescriptors=attr_dict['availableActionDescriptors'].default, assetDescriptors=attr_dict['assetDescriptors'].default, family=attr_dict['family'].default):
    self.name = name
    self.base64Image = base64Image
    self.description = description
    self.version = version
    self.pythonVersion = pythonVersion
    self.disabled = disabled
    self.id = id
    self.author = author
    self.modifiedDate = modifiedDate
    self.createdDate = createdDate
    self.authorEmail = authorEmail
    self.url = url
    self.packages = packages
    self.fileId = fileId
    self.isEmailBundle = isEmailBundle
    self.vendor = vendor
    self.product = product
    self.readme = readme
    self.changeLog = changeLog
    if supportedSwimlaneVersion is not NOTHING:
        self.supportedSwimlaneVersion = supportedSwimlaneVersion
    else:
        self.supportedSwimlaneVersion = __attr_factory_supportedSwimlaneVersion()
    self.availableActionDescriptors = availableActionDescriptors
    self.assetDescriptors = assetDescriptors
    self.family = family
    self.__attrs_post_init__()

PackageDescriptor2

__attrs_init__(self, disabled, id, isEmailBundle, modifiedDate, createdDate, name=NOTHING, base64Image=NOTHING, description=NOTHING, version=NOTHING, pythonVersion=NOTHING, author=NOTHING, author_email=NOTHING, supported_swimlane_version=NOTHING, url=NOTHING, packages=NOTHING, fileId=NOTHING, vendor=NOTHING, product=NOTHING, readme=None, changeLog=None, family=None) special

Method generated by attrs for class PackageDescriptor2.

Source code in aqueduct/models/plugin.py
def __attrs_init__(self, disabled, id, isEmailBundle, modifiedDate, createdDate, name=NOTHING, base64Image=NOTHING, description=NOTHING, version=NOTHING, pythonVersion=NOTHING, author=NOTHING, author_email=NOTHING, supported_swimlane_version=NOTHING, url=NOTHING, packages=NOTHING, fileId=NOTHING, vendor=NOTHING, product=NOTHING, readme=attr_dict['readme'].default, changeLog=attr_dict['changeLog'].default, family=attr_dict['family'].default):
    self.disabled = disabled
    self.id = id
    self.isEmailBundle = isEmailBundle
    self.modifiedDate = modifiedDate
    self.createdDate = createdDate
    if name is not NOTHING:
        self.name = name
    else:
        self.name = __attr_factory_name()
    if base64Image is not NOTHING:
        self.base64Image = base64Image
    else:
        self.base64Image = __attr_factory_base64Image()
    if description is not NOTHING:
        self.description = description
    else:
        self.description = __attr_factory_description()
    if version is not NOTHING:
        self.version = version
    else:
        self.version = __attr_factory_version()
    if pythonVersion is not NOTHING:
        self.pythonVersion = pythonVersion
    else:
        self.pythonVersion = __attr_factory_pythonVersion()
    if author is not NOTHING:
        self.author = author
    else:
        self.author = __attr_factory_author()
    if author_email is not NOTHING:
        self.author_email = author_email
    else:
        self.author_email = __attr_factory_author_email()
    if supported_swimlane_version is not NOTHING:
        self.supported_swimlane_version = supported_swimlane_version
    else:
        self.supported_swimlane_version = __attr_factory_supported_swimlane_version()
    if url is not NOTHING:
        self.url = url
    else:
        self.url = __attr_factory_url()
    if packages is not NOTHING:
        self.packages = packages
    else:
        self.packages = __attr_factory_packages()
    if fileId is not NOTHING:
        self.fileId = fileId
    else:
        self.fileId = __attr_factory_fileId()
    if vendor is not NOTHING:
        self.vendor = vendor
    else:
        self.vendor = __attr_factory_vendor()
    if product is not NOTHING:
        self.product = product
    else:
        self.product = __attr_factory_product()
    self.readme = readme
    self.changeLog = changeLog
    self.family = family

Plugin (BaseDescriptor)

__attrs_init__(self, name, base64Image, description, version, pythonVersion, disabled, id, author, modifiedDate, createdDate, authorEmail, url, packages, fileId, isEmailBundle, vendor, product, readme, changeLog, supportedSwimlaneVersion=NOTHING, availableActionDescriptors=[], assetDescriptors=[], family=None) special

Method generated by attrs for class Plugin.

Source code in aqueduct/models/plugin.py
def __attrs_init__(self, name, base64Image, description, version, pythonVersion, disabled, id, author, modifiedDate, createdDate, authorEmail, url, packages, fileId, isEmailBundle, vendor, product, readme, changeLog, supportedSwimlaneVersion=NOTHING, availableActionDescriptors=attr_dict['availableActionDescriptors'].default, assetDescriptors=attr_dict['assetDescriptors'].default, family=attr_dict['family'].default):
    self.name = name
    self.base64Image = base64Image
    self.description = description
    self.version = version
    self.pythonVersion = pythonVersion
    self.disabled = disabled
    self.id = id
    self.author = author
    self.modifiedDate = modifiedDate
    self.createdDate = createdDate
    self.authorEmail = authorEmail
    self.url = url
    self.packages = packages
    self.fileId = fileId
    self.isEmailBundle = isEmailBundle
    self.vendor = vendor
    self.product = product
    self.readme = readme
    self.changeLog = changeLog
    if supportedSwimlaneVersion is not NOTHING:
        self.supportedSwimlaneVersion = supportedSwimlaneVersion
    else:
        self.supportedSwimlaneVersion = __attr_factory_supportedSwimlaneVersion()
    self.availableActionDescriptors = availableActionDescriptors
    self.assetDescriptors = assetDescriptors
    self.family = family
    self.__attrs_post_init__()

PluginLight

__attrs_init__(self, author, base64Image, changeLog, createdDate, description, id, modifiedDate, name, product, pythonVersion, readme, vendor, version, supportedSwimlaneVersion=None, family=None) special

Method generated by attrs for class PluginLight.

Source code in aqueduct/models/plugin.py
def __attrs_init__(self, author, base64Image, changeLog, createdDate, description, id, modifiedDate, name, product, pythonVersion, readme, vendor, version, supportedSwimlaneVersion=attr_dict['supportedSwimlaneVersion'].default, family=attr_dict['family'].default):
    self.author = author
    self.base64Image = base64Image
    self.changeLog = changeLog
    self.createdDate = createdDate
    self.description = description
    self.id = id
    self.modifiedDate = modifiedDate
    self.name = name
    self.product = product
    self.pythonVersion = pythonVersion
    self.readme = readme
    self.vendor = vendor
    self.version = version
    self.supportedSwimlaneVersion = supportedSwimlaneVersion
    self.family = family

Aggregates

__init__(self, fieldId, aggregateType) special

Method generated by attrs for class Aggregates.

Source code in aqueduct/models/report.py
def __init__(self, fieldId, aggregateType):
    self.fieldId = fieldId
    self.aggregateType = aggregateType

Filters

__init__(self, fieldId, filterType, drillin, value=None) special

Method generated by attrs for class Filters.

Source code in aqueduct/models/report.py
def __init__(self, fieldId, filterType, drillin, value=attr_dict['value'].default):
    self.fieldId = fieldId
    self.filterType = filterType
    self.drillin = drillin
    self.value = value

GroupBys

__init__(self, fieldId, groupByType) special

Method generated by attrs for class GroupBys.

Source code in aqueduct/models/report.py
def __init__(self, fieldId, groupByType):
    self.fieldId = fieldId
    self.groupByType = groupByType

Report

__attrs_init__(self, applicationIds, columns, sorts, filters, countByApplicationFacet, pageSize, offset, defaultSearchReport, permissions, modifiedDate, createdByUser, modifiedByUser, uid, version, id, name, disabled, chartOptions={}, groupBys=[], aggregates=[], allowed=[], statsDrillin=None, createdDate=None, keywords=None) special

Method generated by attrs for class Report.

Source code in aqueduct/models/report.py
def __attrs_init__(self, applicationIds, columns, sorts, filters, countByApplicationFacet, pageSize, offset, defaultSearchReport, permissions, modifiedDate, createdByUser, modifiedByUser, uid, version, id, name, disabled, chartOptions=attr_dict['chartOptions'].default, groupBys=attr_dict['groupBys'].default, aggregates=attr_dict['aggregates'].default, allowed=attr_dict['allowed'].default, statsDrillin=attr_dict['statsDrillin'].default, createdDate=attr_dict['createdDate'].default, keywords=attr_dict['keywords'].default):
    self.applicationIds = applicationIds
    self.columns = columns
    self.sorts = sorts
    self.filters = filters
    self.countByApplicationFacet = countByApplicationFacet
    self.pageSize = pageSize
    self.offset = offset
    self.defaultSearchReport = defaultSearchReport
    self.permissions = permissions
    self.modifiedDate = modifiedDate
    self.createdByUser = createdByUser
    self.modifiedByUser = modifiedByUser
    self.uid = uid
    self.version = version
    self.id = id
    self.name = name
    self.disabled = disabled
    self.chartOptions = chartOptions
    self.groupBys = groupBys
    self.aggregates = aggregates
    self.allowed = allowed
    self.statsDrillin = statsDrillin
    self.createdDate = createdDate
    self.keywords = keywords
    self.__attrs_post_init__()

Role

A Swimlane Role object model

__attrs_init__(self, id, name, disabled, description='', createdByUser={}, createdDate='', modifiedByUser={}, modifiedDate='', permissions={}, users=[], groups=[]) special

Method generated by attrs for class Role.

Source code in aqueduct/models/role.py
def __attrs_init__(self, id, name, disabled, description=attr_dict['description'].default, createdByUser=attr_dict['createdByUser'].default, createdDate=attr_dict['createdDate'].default, modifiedByUser=attr_dict['modifiedByUser'].default, modifiedDate=attr_dict['modifiedDate'].default, permissions=attr_dict['permissions'].default, users=attr_dict['users'].default, groups=attr_dict['groups'].default):
    self.id = id
    self.name = name
    self.disabled = disabled
    self.description = description
    self.createdByUser = createdByUser
    self.createdDate = createdDate
    self.modifiedByUser = modifiedByUser
    self.modifiedDate = modifiedDate
    self.permissions = permissions
    self.users = users
    self.groups = groups
    self.__attrs_post_init__()

User (UserLight)

A Swimlane User object model

__attrs_init__(self, id, name, disabled, active, displayName, firstName, isLdapUser, isOTPVerified, isOtpEnforced, isOtpExempted, isOtpUser, isSystemUser, lastPasswordChangedDate, sessionTimeoutType, timeZoneId, passwordComplexityScore, passwordResetRequired, currentFailedLogInAttempts=None, isLocked=None, avatar=None, userName=None, email=None, lastName=None, middleInitial=None, lastLogin=None, primaryGroup={}, createdByUser={}, createdDate='', modifiedByUser={}, modifiedDate='', favorites={}, permissions={}, roles=[], groups=[], phoneNumber=None, lastFailedLogInAttemptAt=None) special

Method generated by attrs for class User.

Source code in aqueduct/models/user.py
def __attrs_init__(self, id, name, disabled, active, displayName, firstName, isLdapUser, isOTPVerified, isOtpEnforced, isOtpExempted, isOtpUser, isSystemUser, lastPasswordChangedDate, sessionTimeoutType, timeZoneId, passwordComplexityScore, passwordResetRequired, currentFailedLogInAttempts=attr_dict['currentFailedLogInAttempts'].default, isLocked=attr_dict['isLocked'].default, avatar=attr_dict['avatar'].default, userName=attr_dict['userName'].default, email=attr_dict['email'].default, lastName=attr_dict['lastName'].default, middleInitial=attr_dict['middleInitial'].default, lastLogin=attr_dict['lastLogin'].default, primaryGroup=attr_dict['primaryGroup'].default, createdByUser=attr_dict['createdByUser'].default, createdDate=attr_dict['createdDate'].default, modifiedByUser=attr_dict['modifiedByUser'].default, modifiedDate=attr_dict['modifiedDate'].default, favorites=attr_dict['favorites'].default, permissions=attr_dict['permissions'].default, roles=attr_dict['roles'].default, groups=attr_dict['groups'].default, phoneNumber=attr_dict['phoneNumber'].default, lastFailedLogInAttemptAt=attr_dict['lastFailedLogInAttemptAt'].default):
    self.id = id
    self.name = name
    self.disabled = disabled
    self.active = active
    self.displayName = displayName
    self.firstName = firstName
    self.isLdapUser = isLdapUser
    self.isOTPVerified = isOTPVerified
    self.isOtpEnforced = isOtpEnforced
    self.isOtpExempted = isOtpExempted
    self.isOtpUser = isOtpUser
    self.isSystemUser = isSystemUser
    self.lastPasswordChangedDate = lastPasswordChangedDate
    self.sessionTimeoutType = sessionTimeoutType
    self.timeZoneId = timeZoneId
    self.passwordComplexityScore = passwordComplexityScore
    self.passwordResetRequired = passwordResetRequired
    self.currentFailedLogInAttempts = currentFailedLogInAttempts
    self.isLocked = isLocked
    self.avatar = avatar
    self.userName = userName
    self.email = email
    self.lastName = lastName
    self.middleInitial = middleInitial
    self.lastLogin = lastLogin
    self.primaryGroup = primaryGroup
    self.createdByUser = createdByUser
    self.createdDate = createdDate
    self.modifiedByUser = modifiedByUser
    self.modifiedDate = modifiedDate
    self.favorites = favorites
    self.permissions = permissions
    self.roles = roles
    self.groups = groups
    self.phoneNumber = phoneNumber
    self.lastFailedLogInAttemptAt = lastFailedLogInAttemptAt
    self.__attrs_post_init__()

UserLight

__attrs_init__(self, id, name, disabled) special

Method generated by attrs for class UserLight.

Source code in aqueduct/models/user.py
def __attrs_init__(self, id, name, disabled):
    self.id = id
    self.name = name
    self.disabled = disabled