Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/TenantUiMetadataItemUpdateRequest.md
2025-01-28 13:29:29 -05:00

1.7 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
v2024-tenant-ui-metadata-item-update-request TenantUiMetadataItemUpdateRequest TenantUiMetadataItemUpdateRequest TenantUiMetadataItemUpdateRequest powershellsdk
powershell
PowerShell
sdk
TenantUiMetadataItemUpdateRequest
V2024TenantUiMetadataItemUpdateRequest
/tools/sdk/powershell/v2024/models/tenant-ui-metadata-item-update-request
SDK
Software Development Kit
TenantUiMetadataItemUpdateRequest
V2024TenantUiMetadataItemUpdateRequest

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
$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
$TenantUiMetadataItemUpdateRequest | ConvertTo-JSON

[Back to top]