Changes between Version 8 and Version 9 of UniformClearinghouseAPIV2


Ignore:
Timestamp:
11/12/13 10:08:15 (10 years ago)
Author:
mbrinn@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UniformClearinghouseAPIV2

    v8 v9  
    594594# Return:
    595595#    List of dictionaries of member_urn/role pairs [{‘SLICE_MEMBER’: member_urn, ‘SLICE_ROLE’: role }...] where ‘role’ is a string of the role name
    596 def 'lookup_slice_members(slice_urn, credentials, options)
     596def lookup_slice_members(slice_urn, credentials, options)
    597597}}}
    598598
     
    828828{{{
    829829#!python
    830 # Lookup public information about members matching given criteria
     830# Lookup information about members matching given criteria
     831# Provide public information for all members
     832# Provide identifying (e.g. email or name) or private (e.g. SSL/SSH private key) information for members for whom callers is authorized
     833# Where a field requested is unauthorized, the key will not be provided in the returned dictionary for that member
     834# When the field requested has a key but a blank/null value, the access is authorized but the value for that field is, in fact, blank
    831835#
    832836# Arguments:
     
    835839# Return:
    836840#   Dictionary indexed by member URN of dictionaries of name/value pairs of fields specified in ‘filter’ options for members matching ‘match’ criteria
    837 def lookup_public_member_info (credentials, options)
    838 }}}
    839 
    840 {{{
    841 #!python
    842 # Lookup private (SSL/SSH key) information about members matching given criteria
    843 #
    844 # Arguments:
    845 #    options: set of ‘filter’ and ‘match’ criteria specifying which members and which fields for each member to return
    846 #
    847 # Return:
    848 #    Dictionary indexed by member URN of name/value pairs of fields specified in ‘filter’ options for members matching ‘match’ criteria
    849 def lookup_private_member_info (credentials, options)
    850 }}}
    851 
    852 {{{
    853 #!python
    854 # Lookup identifying (e.g. name, email) info about matching members
    855 #
    856 # Arguments:
    857 #    options: set of ‘filter’ and ‘match’ criteria specifying which members and which fields for each member to return
    858 #
    859 # Return:
    860 #    Dictionary indexed by member URN of name/value pairs of fields specified in ‘filter’ options for members matching ‘match’ criteria
    861 def  lookup_identifying_member_info(credentials, options)
    862 }}}
     841def lookup(credentials, options)
     842}}}
     843
    863844
    864845{{{
     
    871852#
    872853# Return: None
    873 def update_member_info(member_urn, credentials, options)
     854def update(type, member_urn, credentials, options)
    874855}}}
    875856