azure/functions/decorators/blob.py [32:44]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    def __init__(self,
                 name: str,
                 path: str,
                 connection: str,
                 data_type: Optional[DataType] = None,
                 **kwargs):
        self.path = path
        self.connection = connection
        super().__init__(name=name, data_type=data_type)

    @staticmethod
    def get_binding_name() -> str:
        return BLOB
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



