Azure / bicep-types-az

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

[Microsoft.Graph/applications]: Missing oauth2scopes #2263

Open cconrado opened 2 months ago

cconrado commented 2 months ago

Resource Type

Microsoft.Graph/applications

Api Version

1.0

Issue Type

Missing property(s)

Other Notes

The doc says it's in the resource. https://learn.microsoft.com/en-us/graph/templates/reference/applications?view=graph-bicep-1.0

But in vscode it says it's not in the resource type.

Bicep Repro

resource fsmApp 'Microsoft.Graph/applications@v1.0' = { displayName: AADAppName uniqueName: AADAppName signInAudience: 'AzureADMyOrg' web: { redirectUris: [ AADAppReply ] implicitGrantSettings: { enableIdTokenIssuance: true } } identifierUris: [ AADAPPSignOn ] oauth2PermissionScopes: [ { value: 'user_impersonation' type: 'User' adminConsentDisplayName: 'Access' adminConsentDescription: 'Access' userConsentDisplayName: 'Access' userConsentDescription: 'Access' } ] }

Confirm