adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
---
id: beta-feature-value-dto
title: FeatureValueDto
pagination_label: FeatureValueDto
sidebar_label: FeatureValueDto
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'FeatureValueDto', 'BetaFeatureValueDto']
slug: /tools/sdk/powershell/beta/models/feature-value-dto
tags: ['SDK', 'Software Development Kit', 'FeatureValueDto', 'BetaFeatureValueDto']
---
# 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
```powershell
$FeatureValueDto = Initialize-PSSailpoint.BetaFeatureValueDto -Feature department `
-Numerator 14 `
-Denominator 14
```
- Convert the resource to JSON
```powershell
$FeatureValueDto | ConvertTo-JSON
```
[[Back to top]](#)