starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,45 @@
---
id: v2024-public-identity-config
title: PublicIdentityConfig
pagination_label: PublicIdentityConfig
sidebar_label: PublicIdentityConfig
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'PublicIdentityConfig', 'V2024PublicIdentityConfig']
slug: /tools/sdk/python/v2024/models/public-identity-config
tags: ['SDK', 'Software Development Kit', 'PublicIdentityConfig', 'V2024PublicIdentityConfig']
---
# 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**](public-identity-attribute-config) | Up to 5 identity attributes that will be available to everyone in the org for all users in the org. | [optional]
**modified** | **datetime** | When this configuration was last modified. | [optional]
**modified_by** | [**IdentityReference**](identity-reference) | | [optional]
}
## Example
```python
from sailpoint.v2024.models.public_identity_config import PublicIdentityConfig
public_identity_config = PublicIdentityConfig(
attributes=[
sailpoint.v2024.models.public_identity_attribute_config.PublicIdentityAttributeConfig(
key = 'country',
name = 'Country', )
],
modified='2018-06-25T20:22:28.104Z',
modified_by=sailpoint.v2024.models.identity_reference.IdentityReference(
type = 'IDENTITY',
id = '2c9180a46faadee4016fb4e018c20639',
name = 'Thomas Edison', )
)
```
[[Back to top]](#)