Show / Hide Table of Contents

Class CreateResourcePrincipalConfigurationDetails

Details of creating a resource principal configuration for the cluster.

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

Properties

ClusterAdminPassword

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

Base-64 encoded Cluster Admin Password for cluster admin user.

DisplayName

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

A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.

Remarks

Required

SecretId

Declaration
[JsonProperty(PropertyName = "secretId")]
public string SecretId { get; set; }
Property Value
Type Description
string

The secretId for the clusterAdminPassword.

SessionTokenLifeSpanDurationInHours

Declaration
[JsonProperty(PropertyName = "sessionTokenLifeSpanDurationInHours")]
public int? SessionTokenLifeSpanDurationInHours { get; set; }
Property Value
Type Description
int?

Life span in hours for the resource principal session token.

In this article
Back to top