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.
As with all of the other classes that represent configuration
sections, all of these values are optional. It is up to some
higher-level construct to decide whether everything they need is filled
in. We don't do any validation on the contents of any of the fields,
although we generally expect them to be strings.
|
__init__(self,
author=None,
revision=None,
description=None,
generator=None)
Constructor for the ReferenceConfig class. |
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__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__
|