Azure / bicep-types-az

Bicep type definitions for ARM resources
MIT License
86 stars 27 forks source link

Microsoft.ServiceFabric: 2022-01-01 Schema not supported? #1596

Open andradf opened 1 year ago

andradf commented 1 year ago

Resource Type

Microsoft.ServiceFabric/clusters/...

Api Version

2022-01-01

Issue Type

Missing property(s)

Other Notes

Service fabric's latest schema is 2022-01-01 according to https://github.com/Azure/azure-resource-manager-schemas/blob/main/schemas/2022-01-01/Microsoft.ServiceFabric.json. The latest supported schema by Bicep seems to be 2021-06-01. When using 2022-01-01 I get the warning

Resource type "Microsoft.ServiceFabric/clusters/applications/services@2022-01-01" does not have types available

Bicep Repro

resource clusterName_TerminalsServer_AM_NDCTerminalServer 'Microsoft.ServiceFabric/clusters/applications/services@2022-01-01' = { parent: clusterName_MyApp name: 'MyService' location: clusterLocation properties: { serviceKind: 'Stateless' serviceTypeName: 'MyServiceType' instanceCount: 3 minInstanceCount: 1 partitionDescription: { partitionScheme: 'Singleton' } } }

Confirm

ghost commented 1 year ago

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

Issue Details
### Resource Type Microsoft.ServiceFabric/clusters/... ### Api Version 2022-01-01 ### Issue Type Missing property(s) ### Other Notes Service fabric's latest schema is 2022-01-01 according to https://github.com/Azure/azure-resource-manager-schemas/blob/main/schemas/2022-01-01/Microsoft.ServiceFabric.json. The latest supported schema by Bicep seems to be 2021-06-01. When using 2022-01-01 I get the warning ```Resource type "Microsoft.ServiceFabric/clusters/applications/services@2022-01-01" does not have types available``` ### Bicep Repro resource clusterName_TerminalsServer_AM_NDCTerminalServer 'Microsoft.ServiceFabric/clusters/applications/services@2022-01-01' = { parent: clusterName_MyApp name: 'MyService' location: clusterLocation properties: { serviceKind: 'Stateless' serviceTypeName: 'MyServiceType' instanceCount: 3 minInstanceCount: 1 partitionDescription: { partitionScheme: 'Singleton' } } } ### Confirm - [X] I have read the troubleshooting guide and looked for duplicates.
Author: andradf
Assignees: -
Labels: `inaccuracy`, `Needs: Triage :mag:`, `Service Attention`, `Service Fabric`
Milestone: -