Class ScanResultSummary
The result of a server check in a managed instance.
Inherited Members
Namespace: Oci.WlmsService.Models
Assembly: OCI.DotNetSDK.Wlms.dll
Syntax
public class ScanResultSummary
Properties
ServerCheckName
Declaration
[Required(ErrorMessage = "ServerCheckName is required.")]
[JsonProperty(PropertyName = "serverCheckName")]
public string ServerCheckName { get; set; }
Property Value
Type | Description |
---|---|
string | The name of the check performed. |
Remarks
Required
ServerCheckResult
Declaration
[Required(ErrorMessage = "ServerCheckResult is required.")]
[JsonProperty(PropertyName = "serverCheckResult")]
public string ServerCheckResult { get; set; }
Property Value
Type | Description |
---|---|
string | The result of the server check. |
Remarks
Required
ServerCheckResultId
Declaration
[JsonProperty(PropertyName = "serverCheckResultId")]
public string ServerCheckResultId { get; set; }
Property Value
Type | Description |
---|---|
string | The identifier of the the server check result. |
ServerCheckStatus
Declaration
[Required(ErrorMessage = "ServerCheckStatus is required.")]
[JsonProperty(PropertyName = "serverCheckStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ScanResultSummary.ServerCheckStatusEnum? ServerCheckStatus { get; set; }
Property Value
Type | Description |
---|---|
ScanResultSummary.ServerCheckStatusEnum? | The status of the server check which is OK, FAILURE, or WARNING. |
Remarks
Required
ServerName
Declaration
[Required(ErrorMessage = "ServerName is required.")]
[JsonProperty(PropertyName = "serverName")]
public string ServerName { get; set; }
Property Value
Type | Description |
---|---|
string | The name of the WebLogic server to which the server check belongs. |
Remarks
Required
TimeOfServerCheck
Declaration
[Required(ErrorMessage = "TimeOfServerCheck is required.")]
[JsonProperty(PropertyName = "timeOfServerCheck")]
public DateTime? TimeOfServerCheck { get; set; }
Property Value
Type | Description |
---|---|
DateTime? | The date when the WebLogic server health check is performed (in RFC 3339 format).
|
Remarks
Required
WlsDomainId
Declaration
[Required(ErrorMessage = "WlsDomainId is required.")]
[JsonProperty(PropertyName = "wlsDomainId")]
public string WlsDomainId { get; set; }
Property Value
Type | Description |
---|---|
string | The OCID of the WebLogic domain. |
Remarks
Required