Files
developer.sailpoint.com/docs/tools/sdk/powershell/refrence/beta/Models/FeatureValueDto.md
darrell-thobe-sp 39d2297259 update to doc files
2025-01-24 14:40:05 -05:00

1.0 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
feature-value-dto FeatureValueDto FeatureValueDto FeatureValueDto powershellsdk
powershell
PowerShell
sdk
FeatureValueDto
/tools/sdk/powershell/beta/models/feature-value-dto
SDK
Software Development Kit
FeatureValueDto

FeatureValueDto

Properties

Name Type Description Notes
Feature Pointer to String The type of feature [optional]
Numerator Pointer to Int32 The number of identities that have access to the feature [optional]
Denominator Pointer to Int32 The number of identities with the corresponding feature [optional]

Examples

  • Prepare the resource
$FeatureValueDto = Initialize-PSSailpoint.BetaFeatureValueDto  -Feature department `
 -Numerator 14 `
 -Denominator 14
  • Convert the resource to JSON
$FeatureValueDto | ConvertTo-JSON

[Back to top]