Class representing a Cedar Backup reference configuration.
The reference information is just used for saving off metadata about
configuration and exists mostly for backwards-compatibility with Cedar
Backup 1.x.
|
__init__(self,
author=None,
revision=None,
description=None,
generator=None)
Constructor for the ReferenceConfig 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
|
|
|
|
|
_getAuthor(self)
Property target used to get the author value. |
source code
|
|
|
|
|
_getRevision(self)
Property target used to get the revision value. |
source code
|
|
|
|
|
_getDescription(self)
Property target used to get the description value. |
source code
|
|
|
|
|
_getGenerator(self)
Property target used to get the generator value. |
source code
|
|
|
|
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__ ,
__sizeof__ ,
__subclasshook__
|