Product
Properties
| Name | Type | Description | Notes | 
|---|---|---|---|
| ProductName | String | Name of the Product | [optional] | 
| Url | String | URL of the Product | [optional] | 
| ProductTenantId | String | An identifier for a specific product-tenant combination | [optional] | 
| ProductRegion | String | Product region | [optional] | 
| ProductRight | String | Right needed for the Product | [optional] | 
| ApiUrl | String | API 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.4 | Additional attributes for a product | [optional] | 
| Zone | String | Zone | [optional] | 
| Status | String | Status of the product | [optional] | 
| StatusDateTime | System.DateTime | Status datetime | [optional] | 
| Reason | String | If there's a tenant provisioning failure then reason will have the description of error | [optional] | 
| Notes | String | Product could have additional notes added during tenant provisioning. | [optional] | 
| DateCreated | System.DateTime | Date when the product was created | [optional] | 
| LastUpdated | System.DateTime | Date when the product was last updated | [optional] | 
| OrgType | Enum [ "development", "staging", "production", "test", "partner", "training", "demonstration", "sandbox" ] | Type of org | [optional] | 
Examples
- Prepare the resource
$Product = Initialize-V2024Product  -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