Source code for tamr_toolbox.data_io.file_system_type

"""Enum representing types of the filesystems"""
from enum import Enum


[docs]class FileSystemType(Enum): LOCAL = "serverfs" HDFS = "hdfs" ADLS = "adls" S3 = "s3" GS = "gs"