@@ -277,14 +277,14 @@ def generate_account_shared_access_signature(self, resource_types, permission,
277277 been specified in an associated stored access policy. Azure will always
278278 convert values to UTC. If a date is passed in without timezone info, it
279279 is assumed to be UTC.
280- :type expiry: date or str
280+ :type expiry: datetime.datetime or str
281281 :param start:
282282 The time at which the shared access signature becomes valid. If
283283 omitted, start time for this call is assumed to be the time when the
284284 storage service receives the request. Azure will always convert values
285285 to UTC. If a date is passed in without timezone info, it is assumed to
286286 be UTC.
287- :type start: date or str
287+ :type start: datetime.datetime or str
288288 :param str ip:
289289 Specifies an IP address or a range of IP addresses from which to accept requests.
290290 If the IP address from which the request originates does not match the IP address
@@ -330,14 +330,14 @@ def generate_container_shared_access_signature(self, container_name,
330330 been specified in an associated stored access policy. Azure will always
331331 convert values to UTC. If a date is passed in without timezone info, it
332332 is assumed to be UTC.
333- :type expiry: date or str
333+ :type expiry: datetime.datetime or str
334334 :param start:
335335 The time at which the shared access signature becomes valid. If
336336 omitted, start time for this call is assumed to be the time when the
337337 storage service receives the request. Azure will always convert values
338338 to UTC. If a date is passed in without timezone info, it is assumed to
339339 be UTC.
340- :type start: date or str
340+ :type start: datetime.datetime or str
341341 :param str id:
342342 A unique value up to 64 characters in length that correlates to a
343343 stored access policy. To create a stored access policy, use
@@ -417,14 +417,14 @@ def generate_blob_shared_access_signature(
417417 been specified in an associated stored access policy. Azure will always
418418 convert values to UTC. If a date is passed in without timezone info, it
419419 is assumed to be UTC.
420- :type expiry: date or str
420+ :type expiry: datetime.datetime or str
421421 :param start:
422422 The time at which the shared access signature becomes valid. If
423423 omitted, start time for this call is assumed to be the time when the
424424 storage service receives the request. Azure will always convert values
425425 to UTC. If a date is passed in without timezone info, it is assumed to
426426 be UTC.
427- :type start: date or str
427+ :type start: datetime.datetime or str
428428 :param str id:
429429 A unique value up to 64 characters in length that correlates to a
430430 stored access policy. To create a stored access policy, use :func:`~set_container_acl`.
0 commit comments