Source code for aztk.models.file_share

from aztk.core.models import Model, fields


[docs]class FileShare(Model): storage_account_name = fields.String() storage_account_key = fields.String() file_share_path = fields.String() mount_path = fields.String()