Class UpdateDirectoryProvisioningResponseContent
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record UpdateDirectoryProvisioningResponseContent : IJsonOnDeserialized, IEquatable<UpdateDirectoryProvisioningResponseContent>
- Inheritance
-
UpdateDirectoryProvisioningResponseContent
- Implements
- Inherited Members
- Extension Methods
Properties
AdditionalProperties
[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }
Property Value
ConnectionId
The connection's identifier
[JsonPropertyName("connection_id")]
public required string ConnectionId { get; set; }
Property Value
ConnectionName
The connection's name
[JsonPropertyName("connection_name")]
public required string ConnectionName { get; set; }
Property Value
CreatedAt
The timestamp at which the directory provisioning configuration was created
[JsonPropertyName("created_at")]
public required DateTime CreatedAt { get; set; }
Property Value
LastSynchronizationAt
The timestamp at which the connection was last synchronized
[JsonPropertyName("last_synchronization_at")]
public DateTime? LastSynchronizationAt { get; set; }
Property Value
LastSynchronizationError
The error message of the last synchronization, if any
[JsonPropertyName("last_synchronization_error")]
public string? LastSynchronizationError { get; set; }
Property Value
LastSynchronizationStatus
The status of the last synchronization
[JsonPropertyName("last_synchronization_status")]
public string? LastSynchronizationStatus { get; set; }
Property Value
Mapping
The mapping between Auth0 and IDP user attributes
[JsonPropertyName("mapping")]
public IEnumerable<DirectoryProvisioningMappingItem> Mapping { get; set; }
Property Value
Strategy
The connection's strategy
[JsonPropertyName("strategy")]
public required string Strategy { get; set; }
Property Value
SynchronizeAutomatically
Whether periodic automatic synchronization is enabled
[JsonPropertyName("synchronize_automatically")]
public required bool SynchronizeAutomatically { get; set; }
Property Value
SynchronizeGroups
[JsonPropertyName("synchronize_groups")]
public string? SynchronizeGroups { get; set; }
Property Value
UpdatedAt
The timestamp at which the directory provisioning configuration was last updated
[JsonPropertyName("updated_at")]
public required DateTime UpdatedAt { get; set; }
Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.