DSCResources/DSC_FSRMClassificationProperty/en-US/about_FSRMClassificationProperty.help.txt

.NAME
    FSRMClassificationProperty
 
.DESCRIPTION
    This resource is used to configure Classification Property Definitions
    in File Server Resource Manager.
 
.PARAMETER Name
    Key - String
    The name of the FSRM Classification Property.
 
.PARAMETER Type
    Required - String
    Allowed values: OrderedList, MultiChoice, SingleChoice, String, MultiString, Integer, YesNo, DateTime
    The type of the FSRM Classification Property.
 
.PARAMETER DisplayName
    Write - String
    The display name for the FSRM Classification Property.
 
.PARAMETER Description
    Write - String
    The description for the FSRM Classification Property.
 
.PARAMETER Ensure
    Write - String
    Allowed values: Present, Absent
    Specifies whether the FSRM Classification Property should exist.
 
.PARAMETER PossibleValue
    Write - StringArray
    An array of possible values that this FSRM Classification Property can take on.
 
.PARAMETER Parameters
    Write - StringArray
    An array of parameters in the format <name>=<value> that can be used by the File Classification Infrastructure.
 
.EXAMPLE 1
 
This configuration will create a FSRM Single Choice Classification Property called Privacy.
 
Configuration FSRMClassificationProperty_SingleChoice_Config
{
    Import-DscResource -Module FSRMDsc
 
    Node localhost
    {
        FSRMClassificationProperty PrivacyClasificationProperty
        {
            Name = 'Privacy'
            Type = 'SingleChoice'
            DisplayName = 'File Privacy'
            Description = 'File Privacy Property'
            Ensure = 'Present'
            PossibleValue = 'Top Secret', 'Secret', 'Confidential'
        } # End of FSRMClassificationProperty Resource
    } # End of Node
} # End of Configuration
 
.EXAMPLE 2
 
This configuration will create a FSRM Yes/No Classification Property called Confidential.
 
Configuration FSRMClassificationProperty_YesNo_Config
{
    Import-DscResource -Module FSRMDsc
 
    Node localhost
    {
        FSRMClassificationProperty ConfidentialFiles
        {
            Name = 'Confidential'
            Type = 'YesNo'
            Description = 'Is this file a confidential file'
            Ensure = 'Present'
        } # End of FSRMClassificationProperty Resource
    } # End of Node
} # End of Configuration