TeamsTemplatesPolicy¶
Parameters¶
Parameter | Attribute | DataType | Description | Allowed Values |
---|---|---|---|---|
Identity | Key | String | Identity of the Teams Templates Policy. | |
Description | Write | String | Description of the Teams Templates Policy. | |
HiddenTemplates | Write | StringArray[] | The list of Teams templates to hide. | |
Ensure | Write | String | Present ensures the policy exists, absent ensures it is removed. | Present , Absent |
Credential | Write | PSCredential | Credentials of the Teams Admin. | |
ApplicationId | Write | String | Id of the Azure Active Directory application to authenticate with. | |
TenantId | Write | String | Name of the Azure Active Directory tenant used for authentication. Format contoso.onmicrosoft.com | |
CertificateThumbprint | Write | String | Thumbprint of the Azure Active Directory application's authentication certificate to use for authentication. | |
ManagedIdentity | Write | Boolean | Managed ID being used for authentication. | |
AccessTokens | Write | StringArray[] | Access token used for authentication. |
Description¶
This resource configures a Teams Templates Policy.
More information: https://learn.microsoft.com/en-us/microsoftteams/templates-policies
Permissions¶
Microsoft Graph¶
To authenticate with the Microsoft Graph API, this resource required the following permissions:
Delegated permissions¶
-
Read
- None
-
Update
- None
Application permissions¶
-
Read
- Organization.Read.All
-
Update
- Organization.Read.All
Examples¶
Example 1¶
This example adds a new Teams Calling Policy.
Configuration Example
{
param(
[Parameter(Mandatory = $true)]
[PSCredential]
$credsTeamsAdmin
)
Import-DscResource -ModuleName Microsoft365DSC
node localhost
{
TeamsTemplatesPolicy "TeamsTemplatesPolicy-Example"
{
Credential = $credsTeamsAdmin;
Description = "Example Policy";
Ensure = "Present";
HiddenTemplates = @("Manage a Project","Manage an Event","Adopt Office 365","Organize Help Desk");
Identity = "Example Policy";
}
}
}