Azure / bicep-types-az

Bicep type definitions for ARM resources
MIT License
80 stars 26 forks source link

[Microsoft.DataFactory/factories]: globalConfiguration property missing #1545

Open flanakin opened 1 year ago

flanakin commented 1 year ago

Resource Type

Microsoft.DataFactory/factories

Api Version

2018-06-01

Issue Type

Missing property(s)

Other Notes

Property confirmed from live resource in the Azure portal: image

Bicep Repro

resource dataFactory 'Microsoft.DataFactory/factories@2018-06-01' = {
  name: 'foo'
  location: resourceGroup().location
  properties: {
    globalConfigurations: {
      PipelineBillingEnabled: 'true'
    }
  }
}

Confirm

stephaniezyen commented 1 year ago

Can you please specify which property you are referring to?

ghost commented 1 year ago

Thanks for the feedback! We are routing this to the appropriate team for follow-up. cc @Jingshu923, @zhangyd2015, @Frey-Wang. Please see https://aka.ms/biceptypesinfo for troubleshooting help.

Issue Details
### Resource Type Microsoft.DataFactory/factories ### Api Version 2018-06-01 ### Issue Type Missing property(s) ### Other Notes Property confirmed from live resource in the Azure portal: ![image](https://user-images.githubusercontent.com/399533/235379459-92753a18-412b-4560-bea9-4ee8d38dffc2.png) ### Bicep Repro ```bicep resource dataFactory 'Microsoft.DataFactory/factories@2018-06-01' = { name: 'foo' location: resourceGroup().location properties: { globalConfigurations: { PipelineBillingEnabled: 'true' } } } ``` ### Confirm - [X] I have read the troubleshooting guide and looked for duplicates.
Author: flanakin
Assignees: -
Labels: `inaccuracy`, `Needs: Triage :mag:`, `Service Attention`, `Data Factory`
Milestone: -
Frey-Wang commented 1 year ago

Is this a SDK related issue?

lansalot commented 11 months ago

Still an issue, caught me out today, @Frey-Wang . Whether deployed via JSON or BICEP, it rejects it:

image

If I export ARM template from DataFactory Studio, it looks like this:

       {
            "name": "[parameters('factoryName')]",
            "type": "Microsoft.DataFactory/factories",
            "apiVersion": "2018-06-01",
            "properties": {
                "globalConfigurations": {
                    "PipelineBillingEnabled": "[parameters('dataFactory_properties_globalConfigurations_PipelineBillingEnabled')]"
                }
            },