Show / Hide Table of Contents

Class IamUserSyncConfiguration

Information about the IAM user sync configuration.

Inheritance
object
IamUserSyncConfiguration
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.BdsService.Models
Assembly: OCI.DotNetSDK.Bds.dll
Syntax
public class IamUserSyncConfiguration

Properties

IsPosixAttributesAdditionRequired

Declaration
[Required(ErrorMessage = "IsPosixAttributesAdditionRequired is required.")]
[JsonProperty(PropertyName = "isPosixAttributesAdditionRequired")]
public bool? IsPosixAttributesAdditionRequired { get; set; }
Property Value
Type Description
bool?

whether to append POSIX attributes to IAM users

Remarks

Required

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public IamUserSyncConfiguration.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
IamUserSyncConfiguration.LifecycleStateEnum?

Lifecycle state of the IAM user sync config

Remarks

Required

TimeCreated

Declaration
[Required(ErrorMessage = "TimeCreated is required.")]
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

Time when this IAM user sync config was created, shown as an RFC 3339 formatted datetime string.

Remarks

Required

TimeUpdated

Declaration
[Required(ErrorMessage = "TimeUpdated is required.")]
[JsonProperty(PropertyName = "timeUpdated")]
public DateTime? TimeUpdated { get; set; }
Property Value
Type Description
DateTime?

Time when this IAM user sync config was updated, shown as an RFC 3339 formatted datetime string.

Remarks

Required

In this article
Back to top