Azure / bicep-types-az

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

[Microsoft.Synapse/workspaces]: Inaccurate property types #2120

Open pbrushwood opened 3 months ago

pbrushwood commented 3 months ago

Resource Type

Microsoft.Synapse/workspaces/sqlPools/workloadGroups

Api Version

2021-06-01

Issue Type

Inaccurate property type(s)

Other Notes

minResourcePercentPerRequest: int
maxResourcePercentPerRequest: int

both of these properties accept decimal values in strings

Bicep Repro

resource WorkloadGroup 'Microsoft.Synapse/workspaces/sqlPools/workloadGroups@2021-06-01' = { name: '${workSpaceName}/${dedicatedSQLPoolName}/WorkloadGroup' properties: { importance: 'normal' maxResourcePercent: 100 minResourcePercent: 0 minResourcePercentPerRequest: '0.75' maxResourcePercentPerRequest: '0.75' } }

Confirm

microsoft-github-policy-service[bot] commented 1 month ago

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