Show / Hide Table of Contents

Class ActivateUpstConfigurationDetails

Details for activating UPST config on the cluster

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

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

MasterEncryptionKeyId

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

OCID of the master encryption key in vault for encrypting token exchange service principal keytab, required for creating UPST config

Remarks

Required

VaultId

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

OCID of the vault to store token exchange service principal keyta, required for creating UPST configb

Remarks

Required

In this article
Back to top