You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@jclouds.apache.org by mirza-spc <no...@github.com> on 2016/06/01 16:00:04 UTC

Re: [jclouds/jclouds-labs] ProfitBricks Compute API (#268)

So I'm not sure how to reconcile the differences with the Compute Interface and PB REST API. Thus, I cannot get Compute live test to pass.

Take for example Compute Interface:
```
   Iterable<L> listLocations();

   N getNode(String id);

   // TODO consider making reboot/resume/suspend return the node they affected
   void destroyNode(String id);

   void rebootNode(String id);

   void resumeNode(String id);

   void suspendNode(String id);
```

However, in PB REST, additional data center id is required. 

---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/268#issuecomment-223040106