Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/Account.md
2025-02-20 12:59:19 -05:00

4.6 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-account Account Account Account pythonsdk
python
Python
sdk
Account
BetaAccount
/tools/sdk/python/beta/models/account
SDK
Software Development Kit
Account
BetaAccount

Account

Properties

Name Type Description Notes
id str System-generated unique ID of the Object [optional] [readonly]
name str Name of the Object [required]
created datetime Creation date of the Object [optional] [readonly]
modified datetime Last modification date of the Object [optional] [readonly]
source_id str The unique ID of the source this account belongs to [required]
source_name str The display name of the source this account belongs to [required]
identity_id str The unique ID of the identity this account is correlated to [optional]
cloud_lifecycle_state str The lifecycle state of the identity this account is correlated to [optional]
identity_state str The identity state of the identity this account is correlated to [optional]
connection_type str The connection type of the source this account is from [optional]
is_machine bool Indicates if the account is of machine type [optional] [default to False]
recommendation Recommendation [optional]
attributes map[string]object The account attributes that are aggregated [required]
authoritative bool Indicates if this account is from an authoritative source [required]
description str A description of the account [optional]
disabled bool Indicates if the account is currently disabled [required]
locked bool Indicates if the account is currently locked [required]
native_identity str The unique ID of the account generated by the source system [required]
system_account bool If true, this is a user account within IdentityNow. If false, this is an account from a source system. [required]
uncorrelated bool Indicates if this account is not correlated to an identity [required]
uuid str The unique ID of the account as determined by the account schema [optional]
manually_correlated bool Indicates if the account has been manually correlated to an identity [required]
has_entitlements bool Indicates if the account has entitlements [required]
identity BaseReferenceDto [optional]
source_owner BaseReferenceDto [optional]
features str A string list containing the owning source's features [optional]
origin Enum [ 'AGGREGATED', 'PROVISIONED' ] The origin of the account either aggregated or provisioned [optional]
owner_identity BaseReferenceDto [optional]
}

Example

from sailpoint.beta.models.account import Account

account = Account(
id='id12345',
name='aName',
created='2023-01-03T21:16:22.432Z',
modified='2023-01-03T21:16:22.432Z',
source_id='2c9180835d2e5168015d32f890ca1581',
source_name='Employees',
identity_id='2c9180835d2e5168015d32f890ca1581',
cloud_lifecycle_state='active',
identity_state='ACTIVE',
connection_type='direct',
is_machine=True,
recommendation=sailpoint.beta.models.recommendation.Recommendation(
                    type = 'MACHINE', 
                    method = 'DISCOVERY', ),
attributes={firstName=SailPoint, lastName=Support, displayName=SailPoint Support},
authoritative=False,
description='',
disabled=False,
locked=False,
native_identity='552775',
system_account=False,
uncorrelated=False,
uuid='{b0dce506-d6d4-44d2-8a32-d9a5b21fb175}',
manually_correlated=False,
has_entitlements=True,
identity=sailpoint.beta.models.base_reference_dto.BaseReferenceDto(
                    type = 'IDENTITY', 
                    id = '2c91808568c529c60168cca6f90c1313', 
                    name = 'William Wilson', ),
source_owner=sailpoint.beta.models.base_reference_dto.BaseReferenceDto(
                    type = 'IDENTITY', 
                    id = '2c91808568c529c60168cca6f90c1313', 
                    name = 'William Wilson', ),
features='ENABLE',
origin='AGGREGATED',
owner_identity=sailpoint.beta.models.base_reference_dto.BaseReferenceDto(
                    type = 'IDENTITY', 
                    id = '2c91808568c529c60168cca6f90c1313', 
                    name = 'William Wilson', )
)

[Back to top]