You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
* Consistency changes/bug fixes
4
4
5
-
* Added sphinx documentation
5
+
* Added sphinx documentation. See it here: http://softlayer.github.com/softlayer-api-python-client
6
6
7
7
* CCI: Adds Support for Additional Disks
8
8
@@ -12,4 +12,4 @@
12
12
13
13
* CLI(CCI): Adds the ability to filter list results for CCIs
14
14
15
-
* API: Adds generator to transparently chunk SoftLayer requests into reasonable chunks
15
+
* API: for large result sets, requests can now be chunked into smaller batches on the server side. Using service.iter_call('getObjects', ...) or service.getObjects(..., iter=True) will return a generator regardless of the results returned. offset and limit can be passed in like normal. An additional named parameter of 'chunk' is used to limit the number of items coming back in a single request, defaults to 100.
Now add an update to the ticket with `Ticket.addUpdate <http://sldn.softlayer.com/reference/services/SoftLayer_Ticket/addUpdate>`_. This uses a parameter, which translate to positional arguments in the order that they appear in the API docs.
Copy file name to clipboardExpand all lines: docs/api/managers.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ Managers
9
9
>>> cci.list_instances()
10
10
[...]
11
11
12
-
Managers mask out a lot of the complexities of using the API into classes that provide a simpler interface to various services.
12
+
Managers mask out a lot of the complexities of using the API into classes that provide a simpler interface to various services. These are higher-level interfaces to the SoftLayer API.
0 commit comments