Show / Hide Table of Contents

Class ManagedInstance

A managed instance has an agent with the WebLogic Management Service plugin running.
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
ManagedInstance
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 ManagedInstance

Properties

CompartmentId

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

The OCID of the compartment.

Remarks

Required

Configuration

Declaration
[JsonProperty(PropertyName = "configuration")]
public ManagedInstanceConfiguration Configuration { get; set; }
Property Value
Type Description
ManagedInstanceConfiguration

DisplayName

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

A user-friendly name that does not have to be unique and is changeable.

Remarks

Required

HostName

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

The FQDN of the managed instance.

Remarks

Required

Id

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

The OCID of the managed instance.

Remarks

Required

OsArch

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

The operating system architecture on the managed instance.

OsName

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

The operating system name on the managed instance.

PluginStatus

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

The plugin status of the managed instance.

Remarks

Required

ServerCount

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

The number of servers running in the managed instance.

Remarks

Required

TimeCreated

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

The date and time the managed instance was first reported (in RFC 3339 format).
Example: 2016-08-25T21:10:29.600Z

Remarks

Required

TimeUpdated

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

The date and time the managed instance was last report (in RFC 3339 format).
Example: 2016-08-25T21:10:29.600Z

Remarks

Required

In this article
Back to top