@Ram Thanks for sharing more details. Logic app does offer different connectors to connect creating and running automated workflows that integrate your apps, data, services, and systems.
You can find the connector list in this document for your reference.
As per your workflow you want to run your data factory pipeline when the file is uploaded to your blob storage so you can leverage the Azure Blob storage and azure data factory connector in your workflow.
**Workflow: **
When a blob is added or modified (properties only) (V2) (Your workflow will trigger whenever the file is added or modified) --> other action as per your requirement (let's say if you want to get the blob file content you can leverage "Get file content" operation such as Get Blob Content etc.) --> Create a pipeline run (This action creates a new pipeline run in your factory)
You can refer to Azure Blob storage and azure data factory for more details what are the trigger and actions individual connector supports. In case if any operation is not supported by the respective connector/or there is no connector then you can leverage the Native HTTP connector to call any HTTP/HTTPS endpoint.
Feel free to get back to me if you have any queries or concerns.