DSCResources/MSFT_TeamsGuestCallingConfiguration/MSFT_TeamsGuestCallingConfiguration.schema.mof
[ClassVersion("1.0.0.0"), FriendlyName("TeamsGuestCallingConfiguration")]
class MSFT_TeamsGuestCallingConfiguration : OMI_BaseResource { [Key, Description("The only valid input is Global - the tenant wide configuration"), ValueMap{"Global"}, Values{"Global"}] string Identity; [Required, Description("Designates whether guests who have been enabled for Teams can use calling functionality. If $false, guests cannot call.")] Boolean AllowPrivateCalling; [Write, Description("Credentials of the Teams Admin"), EmbeddedInstance("MSFT_Credential")] string Credential; [Write, Description("Id of the Azure Active Directory application to authenticate with.")] String ApplicationId; [Write, Description("Name of the Azure Active Directory tenant used for authentication. Format contoso.onmicrosoft.com")] String TenantId; [Write, Description("Thumbprint of the Azure Active Directory application's authentication certificate to use for authentication.")] String CertificateThumbprint; }; |