Codebase list zaqar / 159f89a
Fix api doc in creating pre-signed url Now the three arguments 'paths', 'methods', 'expires' in body are all optional, but it's required in api-ref doc. So fix it soon. Change-Id: I61dad6daa2d030a8ae14acaf1f9bed43cf0be060 wanghao 6 years ago
1 changed file(s) with 3 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
368368 pre_signed_queue_expires:
369369 type: string
370370 in: body
371 required: True
371 required: False
372372 description: |
373373 The time to indicate when the pre-signed will be expired.
374374
375375 pre_signed_queue_methods:
376376 type: list
377377 in: body
378 required: True
378 required: False
379379 description: |
380380 A list of HTTP methods. The HTTP method(s) this URL was created for. By
381381 selecting the HTTP method, it’s possible to give either read or read/write
384384 pre_signed_queue_paths:
385385 type: list
386386 in: body
387 required: True
387 required: False
388388 description: |
389389 A list of paths the pre-signed queue can support. It could be a set of
390390 ``messages``, ``subscriptions``, ``claims``.