-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dataFlow is missing on DataFactory Activity responses #24651
Comments
From the swagger https://github.com/Azure/azure-rest-api-specs/blob/main/specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Pipeline.json#L7390-L7393, it is called dataFlow. I guess there's a mismatch between the service backend and their rest api specs. |
Thanks for the feedback! We are routing this to the appropriate team for follow-up. cc @Jingshu923, @zhangyd2015, @Frey-Wang. Issue Details
Describe the bug To Reproduce
Expected behavior Additional context
|
@btimperman-pantomath Could you share the type you refered in the list operation in We tested in our side and found the azure-sdk-for-js/sdk/datafactory/arm-datafactory/test/datafactory_examples.spec.ts Lines 291 to 297 in 4f6c4ee
Please notice the property azure-sdk-for-js/sdk/datafactory/arm-datafactory/src/models/index.ts Lines 7430 to 7436 in 4f6c4ee
|
Hi, we're sending this friendly reminder because we haven't heard back from you in a while. We need more information about this issue to help address it. Please be sure to give us your input within the next 7 days. If we don't hear back from you within 14 days of this comment the issue will be automatically closed. Thank you! |
Describe the bug
The
ActivityUnion
objects nested in thePipelineResource
object returned bydataFactoryClient.pipelines.listByFactory()
are missing thedataFlow
field, even though this is present in the REST API JSON response.To Reproduce
Steps to reproduce the behavior:
dataFactoryClient.pipelines.listByFactory()
.ActivityUnion
representing the above activity will have an undefineddataFlow
field.Expected behavior
The
dataFlow
field should be populated with aDataFlowReference
.Additional context
This happens because the
serializedName
field insdk/datafactory/arm-datafactory/src/models/mappers.ts
has a typo pointing to an incorrect field on the JSON response. The correct field on the REST API JSON response istypeProperties.dataflow
nottypeProperties.dataFlow
.The text was updated successfully, but these errors were encountered: