Skip to content

Commit

Permalink
Updated Resources and Cmdlet documentation pages
Browse files Browse the repository at this point in the history
  • Loading branch information
NikCharlebois committed Jan 10, 2024
1 parent 3f49a45 commit 4814fe7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -206,44 +206,28 @@ Configuration Example
{
Credential = $Credscredential;
Ensure = "Present";
ExcludeTargets = @(
ExcludeTargets = @( # Updated Property
MSFT_AADAuthenticationMethodPolicyAuthenticatorExcludeTarget{
Id = 'Legal Team'
TargetType = 'group'
}
MSFT_AADAuthenticationMethodPolicyAuthenticatorExcludeTarget{
Id = 'Paralegals'
TargetType = 'group'
}
);
FeatureSettings = MSFT_MicrosoftGraphmicrosoftAuthenticatorFeatureSettings{
DisplayLocationInformationRequiredState = MSFT_MicrosoftGraphAuthenticationMethodFeatureConfiguration{
ExcludeTarget = MSFT_AADAuthenticationMethodPolicyAuthenticatorFeatureTarget{
Id = 'all_users'
TargetType = 'group'
}
IncludeTarget = MSFT_AADAuthenticationMethodPolicyAuthenticatorFeatureTarget{
Id = 'all_users'
TargetType = 'group'
}
State = 'default'
}
CompanionAppAllowedState = MSFT_MicrosoftGraphAuthenticationMethodFeatureConfiguration{
ExcludeTarget = MSFT_AADAuthenticationMethodPolicyAuthenticatorFeatureTarget{
Id = 'all_users'
TargetType = 'group'
}
IncludeTarget = MSFT_AADAuthenticationMethodPolicyAuthenticatorFeatureTarget{
Id = 'all_users'
TargetType = 'group'
}
State = 'default'
}
DisplayAppInformationRequiredState = MSFT_MicrosoftGraphAuthenticationMethodFeatureConfiguration{
ExcludeTarget = MSFT_AADAuthenticationMethodPolicyAuthenticatorFeatureTarget{
Id = 'all_users'
TargetType = 'group'
}
IncludeTarget = MSFT_AADAuthenticationMethodPolicyAuthenticatorFeatureTarget{
Id = 'all_users'
TargetType = 'group'
Expand All @@ -262,7 +246,7 @@ Configuration Example
TargetType = 'group'
}
);
IsSoftwareOathEnabled = $True; # Updated Property
IsSoftwareOathEnabled = $False;
State = "enabled";
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
| Parameter | Attribute | DataType | Description | Allowed Values |
| --- | --- | --- | --- | --- |
| **Id** | Write | String | The object identifier of an Azure AD group. | |
| **isRegistrationRequired** | Write | Boolean | Determines if the user is enforced to register the authentication method. | |
| **TargetType** | Write | String | The type of the authentication method target. Possible values are: group and unknownFutureValue. | `group`, `unknownFutureValue` |


Expand Down Expand Up @@ -214,7 +215,7 @@ Configuration Example
TargetType = 'group'
}
);
State = "disabled"; # Updated Property
State = "enabled";
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,6 @@ Configuration Example
OriginSystem = 'SharePointOnline'
ResourceType = 'SharePoint Online Site'
Url = "https://$($Domain.Split('.')[0]).sharepoint.com/sites/HumanResources"
Url = "https://$Domain.sharepoint.com/sites/HumanResources"
Ensure = 'Present'
Credential = $Credscredential
}
Expand Down

0 comments on commit 4814fe7

Please sign in to comment.