-
Notifications
You must be signed in to change notification settings - Fork 1
FSRMClassificationPropertyValue
dscbot edited this page Jun 16, 2024
·
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 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
- FSRMAutoQuota
- FSRMClassification
- FSRMClassificationProperty
- FSRMClassificationPropertyValue
- FSRMClassificationRule
- FSRMFileGroup
- FSRMFileScreen
- FSRMFileScreenAction
- FSRMFileScreenException
- FSRMFileScreenTemplate
- FSRMFileScreenTemplateAction
- FSRMQuota
- FSRMQuotaAction
- FSRMQuotaTemplate
- FSRMQuotaTemplateAction
- FSRMSettings