Skip to content

FSRMClassificationPropertyValue

dscbot edited this page Jun 16, 2024 · 3 revisions

FSRMClassificationPropertyValue

Parameters

Parameter Attribute DataType Description Allowed Values
Name Key String The FSRM Classification Property value Name.
PropertyName Key String The name of the FSRM Classification Property the value applies to.
Ensure Write String Specifies whether the FSRM Classification Property value should exist. Present, Absent
Description Write String The description of the FSRM Classification Property value.
DisplayName Read String The FSRM Classification Property value Display Name.

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.

Examples

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