Class representing Cedar Backup global peer configuration.
This section contains a list of local and remote peers in a master's
backup pool. The section is optional. If a master does not define this
section, then all peers are unmanaged, and the stage configuration
section must explicitly list any peer that is to be staged. If this
section is configured, then peers may be managed or unmanaged, and the
stage section peer configuration (if any) completely overrides this
configuration.
|
__init__(self,
localPeers=None,
remotePeers=None)
Constructor for the PeersConfig class. |
source code
|
|
|
|
|
|
|
|
|
__eq__(self,
other)
Equals operator, implemented in terms of original Python 2 compare
operator. |
source code
|
|
|
__lt__(self,
other)
Less-than operator, implemented in terms of original Python 2 compare
operator. |
source code
|
|
|
__gt__(self,
other)
Greater-than operator, implemented in terms of original Python 2
compare operator. |
source code
|
|
|
|
|
|
|
_getLocalPeers(self)
Property target used to get the local peers list. |
source code
|
|
|
|
|
_getRemotePeers(self)
Property target used to get the remote peers list. |
source code
|
|
|
|
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__ ,
__sizeof__ ,
__subclasshook__
|