Add describe_parameters support
This commit is contained in:
parent
b0fe1d8eae
commit
c118d12e6f
3 changed files with 21 additions and 1 deletions
|
|
@ -46,6 +46,12 @@ class SimpleSystemManagerBackend(BaseBackend):
|
|||
except KeyError:
|
||||
pass
|
||||
|
||||
def get_all_parameters(self):
|
||||
result = []
|
||||
for k, _ in self._parameters.iteritems():
|
||||
result.append(self._parameters[k])
|
||||
return result
|
||||
|
||||
def get_parameters(self, names, with_decryption):
|
||||
result = []
|
||||
for name in names:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue