Show / Hide Table of Contents

Class UpdateIdentityConfigurationDetails

Details for updating identity config on the cluster

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

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

IamUserSyncConfigurationDetails

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

UpstConfigurationDetails

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