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

1.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-public-identity-config PublicIdentityConfig PublicIdentityConfig PublicIdentityConfig pythonsdk
python
Python
sdk
PublicIdentityConfig
BetaPublicIdentityConfig
/tools/sdk/python/beta/models/public-identity-config
SDK
Software Development Kit
PublicIdentityConfig
BetaPublicIdentityConfig

PublicIdentityConfig

Details of up to 5 Identity attributes that will be publicly accessible for all Identities to anyone in the org

Properties

Name Type Description Notes
attributes []PublicIdentityAttributeConfig [optional]
modified_by IdentityReference [optional]
modified datetime the date/time of the modification [optional]
}

Example

from sailpoint.beta.models.public_identity_config import PublicIdentityConfig

public_identity_config = PublicIdentityConfig(
attributes=[
                    sailpoint.beta.models.public_identity_attribute_config.PublicIdentityAttributeConfig(
                        key = 'country', 
                        name = 'Country', )
                    ],
modified_by=sailpoint.beta.models.identity_reference.IdentityReference(
                    type = 'IDENTITY', 
                    id = '2c9180a46faadee4016fb4e018c20639', 
                    name = 'Thomas Edison', ),
modified='2018-06-25T20:22:28.104Z'
)

[Back to top]