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 - String
    An array of possible values that this FSRM Classification Property can take on.
 
.PARAMETER Parameters
    Write - String
    An array of parameters in the format <name>=<value> that can be used by the File Classification Infrastructure.
 

    .EXAMPLE
        This configuration will create a FSRM Single Choice Classification Property called Privacy.

Configuration Example
{
    param
    (
        [Parameter()]
        [System.String[]]
        $NodeName = 'localhost'
    )

    Import-DscResource -Module FSRMDsc

    Node $NodeName
    {
        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
        This configuration will create a FSRM Yes/No Classification Property called Confidential.

Configuration Example
{
    param
    (
        [Parameter()]
        [System.String[]]
        $NodeName = 'localhost'
    )

    Import-DscResource -Module FSRMDsc

    Node $NodeName
    {
        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