IPWorks Cloud 2020 Python Edition

Questions / Feedback?

on_share_list Event

Fires once for each share returned when listing shares.

Syntax

class AzureFileShareListEventParams(object):
  @property
  def name() -> str: ...
  @property
  def modified_time() -> str: ...
  @property
  def e_tag() -> str: ...
  @property
  def quota() -> int: ...

# In class AzureFile:
@property
def on_share_list() -> Callable[[AzureFileShareListEventParams], None]: ...
@on_share_list.setter
def on_share_list(event_hook: Callable[[AzureFileShareListEventParams], None]) -> None: ...

Remarks

This event fires once for each share returned when list_shares or get_share_info is called.

Name is the name of the share.

ModifiedTime is the last modified time of the share, formatted according to RFC 1123.

ETag is the ETag of the share.

Quota is the share's space quota, in GB.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks Cloud 2020 Python Edition - Version 20.0 [Build 8265]