Skip to main content

Product

Properties

NameTypeDescriptionNotes
product_namestrName of the Product[optional]
urlstrURL of the Product[optional]
product_tenant_idstrAn identifier for a specific product-tenant combination[optional]
product_regionstrProduct region[optional]
product_rightstrRight needed for the Product[optional]
api_urlstrAPI URL of the Product[optional]
licenses[]License[optional]
attributesmap[string]objectAdditional attributes for a product[optional]
zonestrZone[optional]
statusstrStatus of the product[optional]
status_date_timedatetimeStatus datetime[optional]
reasonstrIf there's a tenant provisioning failure then reason will have the description of error[optional]
notesstrProduct could have additional notes added during tenant provisioning.[optional]
date_createddatetimeDate when the product was created[optional]
last_updateddatetimeDate when the product was last updated[optional]
org_typeEnum [ 'development', 'staging', 'production', 'test', 'partner', 'training', 'demonstration', 'sandbox' ]Type of org[optional]
}

Example

from sailpoint.v2024.models.product import Product

product = Product(
product_name='idn',
url='https://tenant-name.identitynow.com',
product_tenant_id='tenant#product',
product_region='us-east-1',
product_right='idn:ui:view',
api_url='https://tenant-name.api.identitynow.com',
licenses=[
sailpoint.v2024.models.license.License(
license_id = 'idn:access-request',
legacy_feature_name = 'ACCESS_REQUEST', )
],
attributes={domain=https://tenant-name.identitynow.com, maxRegisteredUsers=250},
zone='Deployment zone for the Product',
status='active',
status_date_time='2020-05-19T13:49:37.385Z',
reason='Reason',
notes='Example notes',
date_created='2020-05-19T13:49:37.385Z',
last_updated='2020-05-19T13:49:37.385Z',
org_type='test'
)

[Back to top]