Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions src/Get-EEDefaultSchema.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -272,57 +272,57 @@ function Get-EEDefaultSchema {
GraphUri = 'policies/authenticationMethodsPolicy/authenticationMethodConfigurations/email'
Path = 'Policies/AuthenticationMethodsPolicy/AuthenticationMethodConfigurations/Email.json'
Tag = @('All', 'Config', 'Policies')
DelegatedPermission = 'Policy.Read.All'
ApplicationPermission = 'Policy.Read.All'
DelegatedPermission = 'Policy.Read.AuthenticationMethod'
ApplicationPermission = 'Policy.Read.AuthenticationMethod'
},
@{
GraphUri = 'policies/authenticationMethodsPolicy/authenticationMethodConfigurations/fido2'
Path = 'Policies/AuthenticationMethodsPolicy/AuthenticationMethodConfigurations/FIDO2.json'
Tag = @('All', 'Config', 'Policies')
DelegatedPermission = 'Policy.Read.All'
ApplicationPermission = 'Policy.Read.All'
DelegatedPermission = 'Policy.Read.AuthenticationMethod'
ApplicationPermission = 'Policy.Read.AuthenticationMethod'
},
@{
GraphUri = 'policies/authenticationMethodsPolicy/authenticationMethodConfigurations/microsoftAuthenticator'
Path = 'Policies/AuthenticationMethodsPolicy/AuthenticationMethodConfigurations/MicrosoftAuthenticator.json'
Tag = @('All', 'Config', 'Policies')
DelegatedPermission = 'Policy.Read.All'
ApplicationPermission = 'Policy.Read.All'
DelegatedPermission = 'Policy.Read.AuthenticationMethod'
ApplicationPermission = 'Policy.Read.AuthenticationMethod'
},
@{
GraphUri = 'policies/authenticationMethodsPolicy/authenticationMethodConfigurations/sms'
Path = 'Policies/AuthenticationMethodsPolicy/AuthenticationMethodConfigurations/SMS.json'
Tag = @('All', 'Config', 'Policies')
DelegatedPermission = 'Policy.Read.All'
ApplicationPermission = 'Policy.Read.All'
DelegatedPermission = 'Policy.Read.AuthenticationMethod'
ApplicationPermission = 'Policy.Read.AuthenticationMethod'
},
@{
GraphUri = 'policies/authenticationMethodsPolicy/authenticationMethodConfigurations/temporaryAccessPass'
Path = 'Policies/AuthenticationMethodsPolicy/AuthenticationMethodConfigurations/TemporaryAccessPass.json'
Tag = @('All', 'Config', 'Policies')
DelegatedPermission = 'Policy.Read.All'
ApplicationPermission = 'Policy.Read.All'
DelegatedPermission = 'Policy.Read.AuthenticationMethod'
ApplicationPermission = 'Policy.Read.AuthenticationMethod'
},
@{
GraphUri = 'policies/authenticationMethodsPolicy/authenticationMethodConfigurations/softwareOath'
Path = 'Policies/AuthenticationMethodsPolicy/AuthenticationMethodConfigurations/SoftwareOath.json'
Tag = @('All', 'Config', 'Policies')
DelegatedPermission = 'Policy.Read.All'
ApplicationPermission = 'Policy.Read.All'
DelegatedPermission = 'Policy.Read.AuthenticationMethod'
ApplicationPermission = 'Policy.Read.AuthenticationMethod'
},
@{
GraphUri = 'policies/authenticationMethodsPolicy/authenticationMethodConfigurations/voice'
Path = 'Policies/AuthenticationMethodsPolicy/AuthenticationMethodConfigurations/Voice.json'
Tag = @('All', 'Config', 'Policies')
DelegatedPermission = 'Policy.Read.All'
ApplicationPermission = 'Policy.Read.All'
DelegatedPermission = 'Policy.Read.AuthenticationMethod'
ApplicationPermission = 'Policy.Read.AuthenticationMethod'
},
@{
GraphUri = 'policies/authenticationMethodsPolicy/authenticationMethodConfigurations/x509Certificate'
Path = 'Policies/AuthenticationMethodsPolicy/AuthenticationMethodConfigurations/X509Certificate.json'
Tag = @('All', 'Config', 'Policies')
DelegatedPermission = 'Policy.Read.All'
ApplicationPermission = 'Policy.Read.All'
DelegatedPermission = 'Policy.Read.AuthenticationMethod'
ApplicationPermission = 'Policy.Read.AuthenticationMethod'
},
@{
GraphUri = 'policies/adminConsentRequestPolicy'
Expand Down