ipaserver.plugins.aci.ListOfACI

class ipaserver.plugins.aci.ListOfACI(name, type=None, doc=None, flags=[])[source]

Bases: ipalib.output.Output

Public Data Attributes:

type

doc

Inherited from Output

type

validate(cmd, entries)

doc

flags

Public Methods:

validate(cmd, entries)

Inherited from Output

__init__(name[, type, doc, flags])

__repr__()

Return repr(self).

Inherited from ReadOnly

__lock__()

Put this instance into a read-only state.

__islocked__()

Return True if instance is locked, otherwise False.

__setattr__(name, value)

If unlocked, set attribute named name to value.

__delattr__(name)

If unlocked, delete attribute named name.

Private Data Attributes:

Inherited from ReadOnly

_ReadOnly__locked

Private Methods:

Inherited from Output

_Output__repr_iter()


__annotations__ = {}
__delattr__(name)

If unlocked, delete attribute named name.

If this instance is locked, an AttributeError will be raised.

Parameters

name – Name of attribute to delete.

__dict__ = mappingproxy({'__module__': 'ipaserver.plugins.aci', 'type': (<class 'list'>, <class 'tuple'>), 'doc': Gettext('A list of ACI values', domain='ipa', localedir=None), 'validate': <function ListOfACI.validate>, '__doc__': None, '__annotations__': {}})
__init__(name, type=None, doc=None, flags=[])
__islocked__()

Return True if instance is locked, otherwise False.

__lock__()

Put this instance into a read-only state.

After the instance has been locked, attempting to set or delete an attribute will raise an AttributeError.

__module__ = 'ipaserver.plugins.aci'
__repr__()

Return repr(self).

__setattr__(name, value)

If unlocked, set attribute named name to value.

If this instance is locked, an AttributeError will be raised.

Parameters
  • name – Name of attribute to set.

  • value – Value to assign to attribute.

__weakref__

list of weak references to the object (if defined)

doc = Gettext('A list of ACI values', domain='ipa', localedir=None)
flags = []
type = (<class 'list'>, <class 'tuple'>)
validate(cmd, entries)[source]