Changes between Version 5 and Version 6 of GAPI_AM_API


Ignore:
Timestamp:
08/13/10 18:57:18 (14 years ago)
Author:
tmitchel@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GAPI_AM_API

    v5 v6  
    103103
    104104  `users`::
    105   An array of user structs, which contain information about the users that might login to the sliver that the AM needs to know about.  The struct must include the key 'keys', which is a list of strings and can be empty.  The struct must also include the key 'urn', which is the user's URN string.
    106 
     105  An array of user structs, which contain information about the users that might login to the sliver that the AM needs to know about. Each struct must include the key 'keys', which is an array of strings and can be empty. The struct must also include the key 'urn', which is the user’s URN string. The users array can be empty. For example:
     106{{{
     107[
     108  {
     109    urn: urn:publicid:IDN+geni.net:gcf+user+alice
     110    keys: [<ssh key>, <ssh key>]
     111  },
     112  {
     113    urn: urn:publicid:IDN+geni.net:gcf+user+bob
     114    keys: [<ssh key>]
     115  }
     116]
     117}}}
    107118The return value is an RSPEC indicating the resources that were allocated to the slice. The result RSPEC may contain additional information about the allocated resources.
    108119