Show / Hide Table of Contents

Class VaultSecretPasswordDetails

Secret details for the database system password.

Inheritance
object
PasswordDetails
VaultSecretPasswordDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.PsqlService.Models
Assembly: OCI.DotNetSDK.Psql.dll
Syntax
public class VaultSecretPasswordDetails : PasswordDetails

Properties

SecretId

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

The OCID of the secret where the password is stored.

Remarks

Required

SecretVersion

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

The secret version of the stored password.

Remarks

Required

In this article
Back to top