Show / Hide Table of Contents

Class ManagedInstanceSummary

An OCI Compute instance that is being managed

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

Properties

CompartmentId

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

OCID for the Compartment

Remarks

Required

Description

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

Information specified by the user about the managed instance

DisplayName

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

user settable name

Remarks

Required

Id

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

OCID for the managed instance

Remarks

Required

IsRebootRequired

Declaration
[JsonProperty(PropertyName = "isRebootRequired")]
public bool? IsRebootRequired { get; set; }
Property Value
Type Description
bool?

Indicates whether a reboot is required to complete installation of updates.

LastBoot

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

Time at which the instance last booted

LastCheckin

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

Time at which the instance last checked in

OsFamily

Declaration
[JsonProperty(PropertyName = "osFamily")]
[JsonConverter(typeof(ResponseEnumConverter))]
public OsFamilies? OsFamily { get; set; }
Property Value
Type Description
OsFamilies?

The Operating System type of the managed instance.

Status

Declaration
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ManagedInstanceSummary.StatusEnum? Status { get; set; }
Property Value
Type Description
ManagedInstanceSummary.StatusEnum?

status of the managed instance.

UpdatesAvailable

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

Number of updates available to be installed

In this article
Back to top