|
| 1 | +# NormalizedProjectRevisionScimClient |
| 2 | + |
| 3 | +SCIMClient represents a SCIM client configuration to be used by an external identity provider. |
| 4 | + |
| 5 | +## Properties |
| 6 | + |
| 7 | +Name | Type | Description | Notes |
| 8 | +------------ | ------------- | ------------- | ------------- |
| 9 | +**authorization_header_secret** | **str** | The secret that the client uses in the authorization header to authenticate itself. | |
| 10 | +**client_id** | **str** | The unique ID of the SCIM server. | |
| 11 | +**created_at** | **datetime** | The SCIM client's creation time | [optional] [readonly] |
| 12 | +**label** | **str** | The SCIM server's label | |
| 13 | +**mapper_url** | **str** | Mapper specifies the JSONNet code snippet which uses the SCIM provider's data to hydrate the identity's data. | |
| 14 | +**organization_id** | **str** | OrganizationID is the organization ID for this SCIM server. | |
| 15 | +**state** | **str** | State indicates the state of the SCIM server Only servers with state `enabled` will be available for SCIM provisioning. enabled ThirdPartyProviderStateEnabled disabled ThirdPartyProviderStateDisabled | [optional] |
| 16 | +**updated_at** | **datetime** | Last time the SCIM client was updated | [optional] [readonly] |
| 17 | + |
| 18 | +## Example |
| 19 | + |
| 20 | +```python |
| 21 | +from ory_client.models.normalized_project_revision_scim_client import NormalizedProjectRevisionScimClient |
| 22 | + |
| 23 | +# TODO update the JSON string below |
| 24 | +json = "{}" |
| 25 | +# create an instance of NormalizedProjectRevisionScimClient from a JSON string |
| 26 | +normalized_project_revision_scim_client_instance = NormalizedProjectRevisionScimClient.from_json(json) |
| 27 | +# print the JSON string representation of the object |
| 28 | +print(NormalizedProjectRevisionScimClient.to_json()) |
| 29 | + |
| 30 | +# convert the object into a dict |
| 31 | +normalized_project_revision_scim_client_dict = normalized_project_revision_scim_client_instance.to_dict() |
| 32 | +# create an instance of NormalizedProjectRevisionScimClient from a dict |
| 33 | +normalized_project_revision_scim_client_from_dict = NormalizedProjectRevisionScimClient.from_dict(normalized_project_revision_scim_client_dict) |
| 34 | +``` |
| 35 | +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) |
| 36 | + |
| 37 | + |
0 commit comments