Show / Hide Table of Contents

Class ResourceInventory

The inventory of WebLogic domains and managed instances in the selected compartment.
To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized, talk to an administrator. If you're an administrator who needs to write policies to give users access, see Getting Started with Policies.

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

Properties

ManagedInstanceCount

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

The number of managed instances in the selected compartment.

Remarks

Required

ManagedInstanceWithPatchReadinessErrorCount

Declaration
[JsonProperty(PropertyName = "managedInstanceWithPatchReadinessErrorCount")]
public int? ManagedInstanceWithPatchReadinessErrorCount { get; set; }
Property Value
Type Description
int?

The number of managed instance that have WebLogic domains with errors in the patch readiness check.

ManagedInstanceWithPatchReadinessWarningCount

Declaration
[JsonProperty(PropertyName = "managedInstanceWithPatchReadinessWarningCount")]
public int? ManagedInstanceWithPatchReadinessWarningCount { get; set; }
Property Value
Type Description
int?

The number of managed instance that have WebLogic domains with warnings in the patch readiness check.

WlsDomainCount

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

The number of WebLogic domains discovered in the selected compartment.

Remarks

Required

WlsDomainNotInLatestPatchCount

Declaration
[JsonProperty(PropertyName = "wlsDomainNotInLatestPatchCount")]
public int? WlsDomainNotInLatestPatchCount { get; set; }
Property Value
Type Description
int?

The number of WebLogic domains that are not in the latest patch.

WlsDomainWithPatchReadinessErrorCount

Declaration
[JsonProperty(PropertyName = "wlsDomainWithPatchReadinessErrorCount")]
public int? WlsDomainWithPatchReadinessErrorCount { get; set; }
Property Value
Type Description
int?

The number of WebLogic domains that have errors in the patch readiness check.

WlsDomainWithPatchReadinessWarningCount

Declaration
[JsonProperty(PropertyName = "wlsDomainWithPatchReadinessWarningCount")]
public int? WlsDomainWithPatchReadinessWarningCount { get; set; }
Property Value
Type Description
int?

The number of WebLogic domains that have warnings in the patch readiness check.

In this article
Back to top