DSCResources/DSC_FSRMClassificationPropertyValue/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 1
 
This configuration will create a FSRM Classification Property Value called 'Public' assigned to
the Classification Property called 'Privacy'.
 
Configuration FSRMClassificationPropertyValue_Config
{
    Import-DscResource -Module FSRMDsc
 
    Node localhost
    {
        FSRMClassificationPropertyValue PublicClasificationPropertyValue
        {
            Name = 'Public'
            PropertyName = 'Privacy'
            Description = 'Publically accessible files.'
            Ensure = 'Present'
        } # End of FSRMClassificationPropertyValue Resource
    } # End of Node
} # End of Configuration