-
Notifications
You must be signed in to change notification settings - Fork 1
FSRMClassificationPropertyValue
Daniel Scott-Raynsford edited this page Sep 19, 2017
·
3 revisions
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. |
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.
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
- FSRMAutoQuota
- FSRMClassification
- FSRMClassificationProperty
- FSRMClassificationPropertyValue
- FSRMClassificationRule
- FSRMFileGroup
- FSRMFileScreen
- FSRMFileScreenAction
- FSRMFileScreenException
- FSRMFileScreenTemplate
- FSRMFileScreenTemplateAction
- FSRMQuota
- FSRMQuotaAction
- FSRMQuotaTemplate
- FSRMQuotaTemplateAction
- FSRMSettings