Skip to main content

Tenant

Properties

NameTypeDescriptionNotes
IdStringThe unique identifier for the Tenant[optional] [readonly]
NameStringAbbreviated name of the Tenant[optional]
FullNameStringHuman-readable name of the Tenant[optional]
PodStringDeployment pod for the Tenant[optional]
RegionStringDeployment region for the Tenant[optional]
DescriptionStringDescription of the Tenant[optional]
Products[]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]