Skip to main content

Tenant

Properties

NameTypeDescriptionNotes
idstrThe unique identifier for the Tenant[optional] [readonly]
namestrAbbreviated name of the Tenant[optional]
full_namestrHuman-readable name of the Tenant[optional]
podstrDeployment pod for the Tenant[optional]
regionstrDeployment region for the Tenant[optional]
descriptionstrDescription of the Tenant[optional]
products[]Product[optional]
}

Example

from sailpoint.v2024.models.tenant import Tenant

tenant = Tenant(
id='2c91808568c529c60168cca6f90c1324',
name='acme',
full_name='Acme, Inc',
pod='example-pod',
region='us-east-1',
description='Description of the Tenant',
products=[
sailpoint.v2024.models.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]