This repository is for active development of the Azure SDK for Python. For consumers of the SDK we recommend visiting our public developer docs at https://learn.microsoft.com/python/azure/ or our versioned developer docs at https://azure.github.io/azure-sdk-for-python.
MIT License
4.6k
stars
2.82k
forks
source link
Adding more information to typeProperties key for a dataflow activity when using get() in DatasetsOperations class #35832
Is your feature request related to a problem? Please describe.
This might be related to the issue #32382. I am using Python 3.12.2 and pasted the version of azure dependencies below
I am trying to fetch the reference name of the DataFlow used in an ExecuteDataFlowActivity within a pipeline so I can pass it to DataFactoryManagementClient's data_flows attribute and get more information about it. I use get() method in DataFactoryManagementClient's pipelines attribute to get all the details but the response does not contain the data flow's referenceName information.
Describe the solution you'd like
I request that activity information returned by the get() method in DataFactoryManagementClient's pipelines attribute should also include the referenceName of an ExecuteDataFlow activity.
Describe alternatives you've considered
No alternatives considered
Additional context
Below are the screenshots of the responses from Azure SDK for Python and the JSON code representation in ADF portal
When compared, it can be seen that the typeProperties key has the dataflow reference name in the ADF portal, but the same is not available from Python SDK.
Is your feature request related to a problem? Please describe. This might be related to the issue #32382. I am using Python 3.12.2 and pasted the version of azure dependencies below
I am trying to fetch the reference name of the DataFlow used in an ExecuteDataFlowActivity within a pipeline so I can pass it to DataFactoryManagementClient's data_flows attribute and get more information about it. I use get() method in DataFactoryManagementClient's pipelines attribute to get all the details but the response does not contain the data flow's referenceName information.
Describe the solution you'd like I request that activity information returned by the get() method in DataFactoryManagementClient's pipelines attribute should also include the referenceName of an ExecuteDataFlow activity.
Describe alternatives you've considered No alternatives considered
Additional context Below are the screenshots of the responses from Azure SDK for Python and the JSON code representation in ADF portal
When compared, it can be seen that the typeProperties key has the dataflow reference name in the ADF portal, but the same is not available from Python SDK.