mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
1.6 KiB
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 |
|
/tools/sdk/python/beta/models/public-identity-config |
|
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'
)