Files
developer.sailpoint.com/docs/tools/sdk/powershell/refrence/beta/Models/Tenant.md
darrell-thobe-sp 39d2297259 update to doc files
2025-01-24 14:40:05 -05: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
tenant Tenant Tenant Tenant powershellsdk
powershell
PowerShell
sdk
Tenant
/tools/sdk/powershell/beta/models/tenant
SDK
Software Development Kit
Tenant

Tenant

Properties

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

Examples

  • Prepare the resource
$Tenant = Initialize-PSSailpoint.BetaTenant  -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]