2
0
mirror of https://github.com/openkmip/pykmip synced 2025-12-22 11:13:19 +00:00

Adding ProxyKmipClient support for the GetAttributeList operation

This change adds support for the GetAttributeList operation to the
ProxyKmipClient. It updates the Pie client API and provides a demo
showing how to use the operation. All relevant test suites are updated
accordingly.
This commit is contained in:
Peter Hamilton
2015-08-05 08:39:32 -04:00
parent c2e6ffa048
commit 3970c0f211
6 changed files with 199 additions and 0 deletions

View File

@@ -70,6 +70,17 @@ class KmipClient:
"""
pass
@abc.abstractmethod
def get_attribute_list(self, uid):
"""
Get a list of attribute names for a managed object on a KMIP appliance.
Args:
uid (string): The unique ID of the managed object whose attribute
names should be retrieved.
"""
pass
@abc.abstractmethod
def destroy(self, uid):
"""