@@ -242,14 +242,14 @@ def generate_account_shared_access_signature(self, resource_types, permission,
242242 been specified in an associated stored access policy. Azure will always
243243 convert values to UTC. If a date is passed in without timezone info, it
244244 is assumed to be UTC.
245- :type expiry: date or str
245+ :type expiry: datetime.datetime or str
246246 :param start:
247247 The time at which the shared access signature becomes valid. If
248248 omitted, start time for this call is assumed to be the time when the
249249 storage service receives the request. Azure will always convert values
250250 to UTC. If a date is passed in without timezone info, it is assumed to
251251 be UTC.
252- :type start: date or str
252+ :type start: datetime.datetime or str
253253 :param str ip:
254254 Specifies an IP address or a range of IP addresses from which to accept requests.
255255 If the IP address from which the request originates does not match the IP address
@@ -302,14 +302,14 @@ def generate_share_shared_access_signature(self, share_name,
302302 been specified in an associated stored access policy. Azure will always
303303 convert values to UTC. If a date is passed in without timezone info, it
304304 is assumed to be UTC.
305- :type expiry: date or str
305+ :type expiry: datetime.datetime or str
306306 :param start:
307307 The time at which the shared access signature becomes valid. If
308308 omitted, start time for this call is assumed to be the time when the
309309 storage service receives the request. Azure will always convert values
310310 to UTC. If a date is passed in without timezone info, it is assumed to
311311 be UTC.
312- :type start: date or str
312+ :type start: datetime.datetime or str
313313 :param str id:
314314 A unique value up to 64 characters in length that correlates to a
315315 stored access policy. To create a stored access policy, use :func:`~set_share_acl`.
@@ -400,14 +400,14 @@ def generate_file_shared_access_signature(self, share_name,
400400 been specified in an associated stored access policy. Azure will always
401401 convert values to UTC. If a date is passed in without timezone info, it
402402 is assumed to be UTC.
403- :type expiry: date or str
403+ :type expiry: datetime.datetime or str
404404 :param start:
405405 The time at which the shared access signature becomes valid. If
406406 omitted, start time for this call is assumed to be the time when the
407407 storage service receives the request. Azure will always convert values
408408 to UTC. If a date is passed in without timezone info, it is assumed to
409409 be UTC.
410- :type start: date or str
410+ :type start: datetime.datetime or str
411411 :param str id:
412412 A unique value up to 64 characters in length that correlates to a
413413 stored access policy. To create a stored access policy, use
0 commit comments