en-US/about_FSRMClassificationPropertyValue.help.txt

.NAME
    FSRMClassificationPropertyValue
 
# Description
    
    This resource is used to configure Classification Property Definition
    Values in File Server Resource Manager. This resource only needs to be
    used if the Description of a Classification Property Definition Value must
    be set.
     
.PARAMETER Name
    Key - string
    The FSRM Classification Property value Name.
 
.PARAMETER PropertyName
    Key - string
    The name of the FSRM Classification Property the value applies to.
 
.PARAMETER Ensure
    Write - String
    Allowed values: Present, Absent
    Specifies whether the FSRM Classification Property value should exist.
 
.PARAMETER Description
    Write - string
    The description of the FSRM Classification Property value.
 
.PARAMETER DisplayName
    Read - string
    The FSRM Classification Property value Display Name.
 

    .EXAMPLE
        This configuration will create a FSRM Classification Property Value called 'Public' assigned to
        the Classification Property called 'Privacy'.

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

    Import-DscResource -Module FSRMDsc

    Node $NodeName
    {
        FSRMClassificationPropertyValue PublicClasificationPropertyValue
        {
            Name = 'Public'
            PropertyName = 'Privacy'
            Description = 'Publically accessible files.'
            Ensure = 'Present'
        } # End of FSRMClassificationPropertyValue Resource
    } # End of Node
} # End of Configuration