Show / Hide Table of Contents

Class GetWlsDomainCredentialRequest

Inheritance
object
GetWlsDomainCredentialRequest
Implements
IOciRequest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.WlmsService.Requests
Assembly: OCI.DotNetSDK.Wlms.dll
Syntax
public class GetWlsDomainCredentialRequest : IOciRequest
Examples

Click here to see an example of how to use GetWlsDomainCredential request.

Properties

CredentialType

Declaration
[Required(ErrorMessage = "CredentialType is required.")]
[HttpConverter(TargetEnum.Path, "credentialType")]
public GetWlsDomainCredentialRequest.CredentialTypeEnum? CredentialType { get; set; }
Property Value
Type Description
GetWlsDomainCredentialRequest.CredentialTypeEnum?

The type of the credentials.

Remarks

Required

OpcRequestId

Declaration
[HttpConverter(TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
Property Value
Type Description
string

The client request ID for tracing.

WlsDomainId

Declaration
[Required(ErrorMessage = "WlsDomainId is required.")]
[HttpConverter(TargetEnum.Path, "wlsDomainId")]
public string WlsDomainId { get; set; }
Property Value
Type Description
string

The OCID of the WebLogic domain.

Remarks

Required

Implements

IOciRequest
In this article
Back to top