|
3 | 3 | "name": "fast-azure-storage", |
4 | 4 | "description": "Fast client library for azure storage services", |
5 | 5 | "url": "https://github.com/taskcluster/fast-azure-storage", |
6 | | - "version": "3.1.5" |
| 6 | + "version": "3.1.6" |
7 | 7 | }, |
8 | 8 | "files": { |
9 | 9 | "docs/assets/vendor/bootstrap/js/bootstrap.min.js": { |
|
133 | 133 | "module": "azure", |
134 | 134 | "namespace": "", |
135 | 135 | "file": "lib/queue.js", |
136 | | - "line": 50, |
| 136 | + "line": 52, |
137 | 137 | "description": "Queue client class for interacting with Azure Queue Storage.", |
138 | 138 | "is_constructor": 1, |
139 | 139 | "params": [ |
|
942 | 942 | }, |
943 | 943 | { |
944 | 944 | "file": "lib/queue.js", |
945 | | - "line": 174, |
| 945 | + "line": 176, |
946 | 946 | "description": "Generate a SAS string on the form `'key1=val1&key2=val2&...'`.", |
947 | 947 | "itemtype": "method", |
948 | 948 | "name": "sas", |
|
967 | 967 | }, |
968 | 968 | { |
969 | 969 | "file": "lib/queue.js", |
970 | | - "line": 252, |
| 970 | + "line": 254, |
971 | 971 | "description": "Construct authorized request options by adding signature or\nshared-access-signature, return promise for the request options.", |
972 | 972 | "access": "protected", |
973 | 973 | "tagname": "", |
|
1004 | 1004 | }, |
1005 | 1005 | { |
1006 | 1006 | "file": "lib/queue.js", |
1007 | | - "line": 269, |
| 1007 | + "line": 271, |
1008 | 1008 | "description": "Make a signed request to `path` using `method` in upper-case and all `query`\nparameters and `headers` keys in lower-case. The request will carry `data`\nas payload and will be retried using the configured retry policy,", |
1009 | 1009 | "access": "private", |
1010 | 1010 | "tagname": "", |
|
1046 | 1046 | }, |
1047 | 1047 | { |
1048 | 1048 | "file": "lib/queue.js", |
1049 | | - "line": 347, |
| 1049 | + "line": 349, |
1050 | 1050 | "description": "List queues under the storage account.", |
1051 | 1051 | "itemtype": "method", |
1052 | 1052 | "name": "listQueues", |
|
1066 | 1066 | }, |
1067 | 1067 | { |
1068 | 1068 | "file": "lib/queue.js", |
1069 | | - "line": 399, |
| 1069 | + "line": 401, |
1070 | 1070 | "description": "Create queue with given `name`, returns promise that resolves to `true`, if\nthe queue didn't already exist. Do not rely on this behavior unless you\ndisable the retry logic. Note, if queue exists with different\nmeta-data an error will be thrown.", |
1071 | 1071 | "itemtype": "method", |
1072 | 1072 | "name": "createQueue", |
|
1091 | 1091 | }, |
1092 | 1092 | { |
1093 | 1093 | "file": "lib/queue.js", |
1094 | | - "line": 434, |
| 1094 | + "line": 436, |
1095 | 1095 | "description": "Delete queue, return promise queue is deleted.\nNote, Azure may take a while to garbage collect the queue, see documentation\nfor relevant details, if you plan to recreate the queue again.", |
1096 | 1096 | "itemtype": "method", |
1097 | 1097 | "name": "deleteQueue", |
|
1111 | 1111 | }, |
1112 | 1112 | { |
1113 | 1113 | "file": "lib/queue.js", |
1114 | | - "line": 451, |
| 1114 | + "line": 453, |
1115 | 1115 | "description": "Get meta-data for given `queue`. This includes approximate message count,\nnote that the approximate message is an upper-bound on the number of messages\nin the queue.\n\nWarning, this is a `HEAD` request, so if the queue is missing you get an\nerror with `err.statusCode = 404`, but `err.code` property will be\n`ErrorWithoutCode`. The same goes for all other error codes.", |
1116 | 1116 | "itemtype": "method", |
1117 | 1117 | "name": "getMetadata", |
|
1131 | 1131 | }, |
1132 | 1132 | { |
1133 | 1133 | "file": "lib/queue.js", |
1134 | | - "line": 491, |
| 1134 | + "line": 493, |
1135 | 1135 | "description": "Set meta-data for given `queue`, note that this overwrites all existing\nmeta-data key/value pairs.", |
1136 | 1136 | "itemtype": "method", |
1137 | 1137 | "name": "setMetadata", |
|
1156 | 1156 | }, |
1157 | 1157 | { |
1158 | 1158 | "file": "lib/queue.js", |
1159 | | - "line": 524, |
| 1159 | + "line": 526, |
1160 | 1160 | "description": "Put a message with XML-safe `text` into `queue` with TTL and visibility-\ntimeout, as given in `options`.\n\nNotice that the `text` must be XML-safe, for JSON it's useful to base64\nencode the message. This is what many other libraries does, so make sense for\ninteroperability. Encoding this way is trivial in node.js:\n```js\nvar text = new Buffer(JSON.stringify(jsonMessage)).toString('base64');\n```", |
1161 | 1161 | "itemtype": "method", |
1162 | 1162 | "name": "putMessage", |
|
1186 | 1186 | }, |
1187 | 1187 | { |
1188 | 1188 | "file": "lib/queue.js", |
1189 | | - "line": 569, |
| 1189 | + "line": 571, |
1190 | 1190 | "description": "Peek messages from `queue`, returns up to `options.numberOfMessages`, note,\nthat Azure Queue Storage only allows up to 32 messages at once.\n\nNote, Azure may return zero messages giving you an empty array. This is not\nnecessarily proof the that the queue is empty. See REST documentation for\nconsistency levels.", |
1191 | 1191 | "itemtype": "method", |
1192 | 1192 | "name": "peekMessages", |
|
1211 | 1211 | }, |
1212 | 1212 | { |
1213 | 1213 | "file": "lib/queue.js", |
1214 | | - "line": 613, |
| 1214 | + "line": 615, |
1215 | 1215 | "description": "Get messages from `queue`, returns up to `options.numberOfMessages` of\nmessages, note, that Azure Queue Storage only allows up to 32 messages per\nrequest.\nSee, `deleteMessage` for how to delete messages once you have processed them.\n\nNote, Azure may return zero messages giving you an empty array. This is not\nnecessarily proof the that the queue is empty. See REST documentation for\nconsistency levels.", |
1216 | 1216 | "itemtype": "method", |
1217 | 1217 | "name": "getMessages", |
|
1236 | 1236 | }, |
1237 | 1237 | { |
1238 | 1238 | "file": "lib/queue.js", |
1239 | | - "line": 665, |
| 1239 | + "line": 667, |
1240 | 1240 | "description": "Delete a message from `queue` using `messageId` and `popReceipt`", |
1241 | 1241 | "itemtype": "method", |
1242 | 1242 | "name": "deleteMessage", |
|
1266 | 1266 | }, |
1267 | 1267 | { |
1268 | 1268 | "file": "lib/queue.js", |
1269 | | - "line": 695, |
| 1269 | + "line": 697, |
1270 | 1270 | "description": "Clear all messages from `queue`, note this may timeout if there is a lot of\nmessages in the queue, in this case you'll get a error with the code:\n`OperationTimedOut`, and you should retry until the operation is successful.\nSee Azure Queue Storage REST API documentation for details.", |
1271 | 1271 | "itemtype": "method", |
1272 | 1272 | "name": "clearMessages", |
|
1286 | 1286 | }, |
1287 | 1287 | { |
1288 | 1288 | "file": "lib/queue.js", |
1289 | | - "line": 716, |
| 1289 | + "line": 718, |
1290 | 1290 | "description": "Update a message from `queue` with XML-safe `text` and visibility-timeout,\nas given in `options`.\n\nNotice that the `text` must be XML-safe, for JSON it's useful to base64\nencode the message. This is what many other libraries does, so make sense for\ninteroperability. Encoding this way is trivial in node.js:\n```js\nvar text = new Buffer(JSON.stringify(jsonMessage)).toString('base64');\n```", |
1291 | 1291 | "itemtype": "method", |
1292 | 1292 | "name": "updateMessage", |
|
1728 | 1728 | }, |
1729 | 1729 | { |
1730 | 1730 | "message": "replacing incorrect tag: returns with return", |
1731 | | - "line": " lib/queue.js:174" |
| 1731 | + "line": " lib/queue.js:176" |
1732 | 1732 | }, |
1733 | 1733 | { |
1734 | 1734 | "message": "replacing incorrect tag: returns with return", |
1735 | | - "line": " lib/queue.js:252" |
| 1735 | + "line": " lib/queue.js:254" |
1736 | 1736 | }, |
1737 | 1737 | { |
1738 | 1738 | "message": "replacing incorrect tag: returns with return", |
1739 | | - "line": " lib/queue.js:347" |
| 1739 | + "line": " lib/queue.js:349" |
1740 | 1740 | }, |
1741 | 1741 | { |
1742 | 1742 | "message": "replacing incorrect tag: returns with return", |
1743 | | - "line": " lib/queue.js:399" |
| 1743 | + "line": " lib/queue.js:401" |
1744 | 1744 | }, |
1745 | 1745 | { |
1746 | 1746 | "message": "replacing incorrect tag: returns with return", |
1747 | | - "line": " lib/queue.js:434" |
| 1747 | + "line": " lib/queue.js:436" |
1748 | 1748 | }, |
1749 | 1749 | { |
1750 | 1750 | "message": "replacing incorrect tag: returns with return", |
1751 | | - "line": " lib/queue.js:451" |
| 1751 | + "line": " lib/queue.js:453" |
1752 | 1752 | }, |
1753 | 1753 | { |
1754 | 1754 | "message": "replacing incorrect tag: returns with return", |
1755 | | - "line": " lib/queue.js:491" |
| 1755 | + "line": " lib/queue.js:493" |
1756 | 1756 | }, |
1757 | 1757 | { |
1758 | 1758 | "message": "replacing incorrect tag: returns with return", |
1759 | | - "line": " lib/queue.js:524" |
| 1759 | + "line": " lib/queue.js:526" |
1760 | 1760 | }, |
1761 | 1761 | { |
1762 | 1762 | "message": "replacing incorrect tag: returns with return", |
1763 | | - "line": " lib/queue.js:569" |
| 1763 | + "line": " lib/queue.js:571" |
1764 | 1764 | }, |
1765 | 1765 | { |
1766 | 1766 | "message": "replacing incorrect tag: returns with return", |
1767 | | - "line": " lib/queue.js:613" |
| 1767 | + "line": " lib/queue.js:615" |
1768 | 1768 | }, |
1769 | 1769 | { |
1770 | 1770 | "message": "replacing incorrect tag: returns with return", |
1771 | | - "line": " lib/queue.js:665" |
| 1771 | + "line": " lib/queue.js:667" |
1772 | 1772 | }, |
1773 | 1773 | { |
1774 | 1774 | "message": "replacing incorrect tag: returns with return", |
1775 | | - "line": " lib/queue.js:695" |
| 1775 | + "line": " lib/queue.js:697" |
1776 | 1776 | }, |
1777 | 1777 | { |
1778 | 1778 | "message": "replacing incorrect tag: returns with return", |
|
0 commit comments