Show / Hide Table of Contents

Class CreateIdentityConfigurationDetails

Details for creating the identity configuration.

Inheritance
object
CreateIdentityConfigurationDetails
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 CreateIdentityConfigurationDetails

Properties

ClusterAdminPassword

Declaration
[Required(ErrorMessage = "ClusterAdminPassword is required.")]
[JsonProperty(PropertyName = "clusterAdminPassword")]
public string ClusterAdminPassword { get; set; }
Property Value
Type Description
string

Base-64 encoded password for the cluster admin user.

Remarks

Required

ConfidentialApplicationId

Declaration
[Required(ErrorMessage = "ConfidentialApplicationId is required.")]
[JsonProperty(PropertyName = "confidentialApplicationId")]
public string ConfidentialApplicationId { get; set; }
Property Value
Type Description
string

Identity domain confidential application ID for the identity config, required for creating identity configuration

Remarks

Required

DisplayName

Declaration
[Required(ErrorMessage = "DisplayName is required.")]
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

Display name of the identity configuration, required for creating identity configuration.

Remarks

Required

IamUserSyncConfigurationDetails

Declaration
[JsonProperty(PropertyName = "iamUserSyncConfigurationDetails")]
public IamUserSyncConfigurationDetails IamUserSyncConfigurationDetails { get; set; }
Property Value
Type Description
IamUserSyncConfigurationDetails

IdentityDomainId

Declaration
[Required(ErrorMessage = "IdentityDomainId is required.")]
[JsonProperty(PropertyName = "identityDomainId")]
public string IdentityDomainId { get; set; }
Property Value
Type Description
string

Identity domain OCID to use for identity config, required for creating identity configuration

Remarks

Required

UpstConfigurationDetails

Declaration
[JsonProperty(PropertyName = "upstConfigurationDetails")]
public UpstConfigurationDetails UpstConfigurationDetails { get; set; }
Property Value
Type Description
UpstConfigurationDetails
In this article
Back to top