Skip to main content

Product

Properties

NameTypeDescriptionNotes
ProductNameStringName of the Product[optional]
UrlStringURL of the Product[optional]
ProductTenantIdStringAn identifier for a specific product-tenant combination[optional]
ProductRegionStringProduct region[optional]
ProductRightStringRight needed for the Product[optional]
ApiUrlStringAPI URL of the Product[optional]
Licenses[]License[optional]
Attributes[map[string]AnyType]https://learn.microsoft.com/en-us/powershell/scripting/lang-spec/chapter-04?view=powershell-7.4Additional attributes for a product[optional]
ZoneStringZone[optional]
StatusStringStatus of the product[optional]
StatusDateTimeSystem.DateTimeStatus datetime[optional]
ReasonStringIf there's a tenant provisioning failure then reason will have the description of error[optional]
NotesStringProduct could have additional notes added during tenant provisioning.[optional]
DateCreatedSystem.DateTimeDate when the product was created[optional]
LastUpdatedSystem.DateTimeDate when the product was last updated[optional]
OrgTypeEnum [ "development", "staging", "production", "test", "partner", "training", "demonstration", "sandbox" ]Type of org[optional]

Examples

  • Prepare the resource
$Product = Initialize-PSSailpoint.BetaProduct  -ProductName idn `
-Url https://tenant-name.identitynow.com `
-ProductTenantId tenant#product `
-ProductRegion us-east-1 `
-ProductRight idn:ui:view `
-ApiUrl https://tenant-name.api.identitynow.com `
-Licenses null `
-Attributes {domain=https://tenant-name.identitynow.com, maxRegisteredUsers=250} `
-Zone Deployment zone for the Product `
-Status active `
-StatusDateTime 2020-05-19T13:49:37.385Z `
-Reason Reason `
-Notes Example notes `
-DateCreated 2020-05-19T13:49:37.385Z `
-LastUpdated 2020-05-19T13:49:37.385Z `
-OrgType test
  • Convert the resource to JSON
$Product | ConvertTo-JSON

[Back to top]