Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/Tenant.md
2025-02-03 22:09:17 +00:00

1.3 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 Tenant Tenant Tenant powershellsdk
powershell
PowerShell
sdk
Tenant
V2024Tenant
/tools/sdk/powershell/v2024/models/tenant
SDK
Software Development Kit
Tenant
V2024Tenant

Tenant

Properties

Name Type Description Notes
Id String The unique identifier for the Tenant [optional] [readonly]
Name String Abbreviated name of the Tenant [optional]
FullName String Human-readable name of the Tenant [optional]
Pod String Deployment pod for the Tenant [optional]
Region String Deployment region for the Tenant [optional]
Description String Description of the Tenant [optional]
Products []Product [optional]

Examples

  • Prepare the resource
$Tenant = Initialize-PSSailpoint.V2024Tenant  -Id 2c91808568c529c60168cca6f90c1324 `
 -Name acme `
 -FullName Acme, Inc `
 -Pod example-pod `
 -Region us-east-1 `
 -Description Description of the Tenant `
 -Products null
  • Convert the resource to JSON
$Tenant | ConvertTo-JSON

[Back to top]