Show / Hide Table of Contents

Class WlsDomainCredential

Details of the WebLogic and Node Manager credentials.

Inheritance
object
WlsDomainCredential
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.WlmsService.Models
Assembly: OCI.DotNetSDK.Wlms.dll
Syntax
public class WlsDomainCredential

Properties

PasswordSecretId

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

The OCID for password secret.

Strategy

Declaration
[JsonProperty(PropertyName = "strategy")]
[JsonConverter(typeof(ResponseEnumConverter))]
public WlsDomainCredential.StrategyEnum? Strategy { get; set; }
Property Value
Type Description
WlsDomainCredential.StrategyEnum?

The strategy for passing the new credentials.

Type

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

The type of credential.

Remarks

Required

UserSecretId

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

The OCID for user secret.

In this article
Back to top