adding docs back with new ids

This commit is contained in:
darrell-thobe-sp
2025-01-27 16:01:17 -05:00
parent 90087c5d3f
commit b4a279954e
2823 changed files with 130835 additions and 78 deletions

View File

@@ -0,0 +1,39 @@
---
id: tenant-ui-metadata-item-update-request
title: TenantUiMetadataItemUpdateRequest
pagination_label: TenantUiMetadataItemUpdateRequest
sidebar_label: TenantUiMetadataItemUpdateRequest
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'TenantUiMetadataItemUpdateRequest']
slug: /tools/sdk/powershell/v2024/models/tenant-ui-metadata-item-update-request
tags: ['SDK', 'Software Development Kit', 'TenantUiMetadataItemUpdateRequest']
---
# TenantUiMetadataItemUpdateRequest
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**IframeWhiteList** | Pointer to **String** | Parameter that organizational administrators can adjust to permit another domain to encapsulate IDN within an iframe. If you would like to reset the value use ""null"". It will only allow include into iframe non authenticated portions of the product, such as password reset. | [optional]
**UsernameLabel** | Pointer to **String** | Descriptor for the username input field. If you would like to reset the value use ""null"". | [optional]
**UsernameEmptyText** | Pointer to **String** | Placeholder text displayed in the username input field. If you would like to reset the value use ""null"". | [optional]
## Examples
- Prepare the resource
```powershell
$TenantUiMetadataItemUpdateRequest = Initialize-PSSailpoint.V2024TenantUiMetadataItemUpdateRequest -IframeWhiteList http://example.com http://example2.com `
-UsernameLabel Email `
-UsernameEmptyText Please provide your work email address...
```
- Convert the resource to JSON
```powershell
$TenantUiMetadataItemUpdateRequest | ConvertTo-JSON
```
[[Back to top]](#)