DSCResources/MSFT_EXOSharedMailbox/MSFT_EXOSharedMailbox.schema.mof
[ClassVersion("1.0.0.0"), FriendlyName("EXOSharedMailbox")]
class MSFT_EXOSharedMailbox : OMI_BaseResource { [Key, Description("The display name of the Shared Mailbox")] string DisplayName; [Write, Description("The primary email address of the Shared Mailbox")] string PrimarySMTPAddress; [Write, Description("The alias of the Shared Mailbox")] string Alias; [Write, Description("The EmailAddresses parameter specifies all the email addresses (proxy addresses) for the Shared Mailbox")] string EmailAddresses[]; [Write, Description("Present ensures the group exists, absent ensures it is removed"), ValueMap{"Present","Absent"}, Values{"Present","Absent"}] string Ensure; [Write, Description("Credentials of the Exchange Global Admin"), EmbeddedInstance("MSFT_Credential")] string Credential; [Write, Description("Id of the Azure Active Directory application to authenticate with.")] String ApplicationId; [Write, Description("Id of the Azure Active Directory tenant used for authentication.")] String TenantId; [Write, Description("Thumbprint of the Azure Active Directory application's authentication certificate to use for authentication.")] String CertificateThumbprint; [Write, Description("Username can be made up to anything but password will be used for CertificatePassword"), EmbeddedInstance("MSFT_Credential")] String CertificatePassword; [Write, Description("Path to certificate used in service principal usually a PFX file.")] String CertificatePath; [Write, Description("Managed ID being used for authentication.")] Boolean ManagedIdentity; }; |