Show / Hide Table of Contents

Class BdsInstanceResetPasswordDetails

The request body for resetting the password of indicated component.

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

Properties

ClusterAdminPassword

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

Base-64 encoded password for the cluster admin user.

SecretId

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

The secretId for the cluster admin user.

Service

Declaration
[Required(ErrorMessage = "Service is required.")]
[JsonProperty(PropertyName = "service")]
[JsonConverter(typeof(StringEnumConverter))]
public BdsInstanceResetPasswordDetails.ServiceEnum? Service { get; set; }
Property Value
Type Description
BdsInstanceResetPasswordDetails.ServiceEnum?

Target service to which this operation applies.

Remarks

Required

In this article
Back to top