Azure / autorest.csharp

Extension for AutoRest (https://github.com/Azure/autorest) that generates C# code
MIT License
141 stars 161 forks source link

Support generating DataFactoryElement of IDictionary<string, BinaryData> #4135

Open JoshLove-msft opened 6 months ago

JoshLove-msft commented 6 months ago

The DataFactory team has requested that the DataFactoryElement type be extended to support generating properties typed as IDictionary<string, BinaryData>. This matches the existing behavior when generating a definition like:

"foo": {
    "type": "object",
    "additionalProperties": {
        "type": "object"
    }

We would need to define a new x-ms-format for this here. We would also need to update Azure.Core.Expressions.DataFactory to support serializing when using this type.

ruowan commented 5 months ago

Hi, @JoshLove-msft. Any updates on this issue?