Show / Hide Table of Contents

Class UpstConfiguration

Information about the UPST configuration.

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

Properties

KeytabContent

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

The kerberos keytab content used for creating identity propagation trust config, in base64 format

Remarks

Required

LifecycleState

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

Lifecycle state of the UPST config

Remarks

Required

MasterEncryptionKeyId

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

Master Encryption key used for encrypting token exchange keytab.

Remarks

Required

SecretId

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

Secret ID for token exchange keytab

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 UPST config was created, shown as an RFC 3339 formatted datetime string.

Remarks

Required

TimeTokenExchangeKeytabLastRefreshed

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

Time when the keytab for token exchange principal is last refreshed, 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 UPST config was updated, shown as an RFC 3339 formatted datetime string.

Remarks

Required

TokenExchangePrincipalName

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

Token exchange kerberos Principal name in cluster

VaultId

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

The instance OCID of the node, which is the resource from which the node backup was acquired.

Remarks

Required

In this article
Back to top