Show / Hide Table of Contents

Class ManagedInstanceSummary

Provides summary information for a managed instance.

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.OsmanagementhubService.Models
Assembly: OCI.DotNetSDK.Osmanagementhub.dll
Syntax
public class ManagedInstanceSummary

Properties

AgentVersion

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

The version of osmh-agent running on the managed instance

Architecture

Declaration
[JsonProperty(PropertyName = "architecture")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ArchType? Architecture { get; set; }
Property Value
Type Description
ArchType?

The CPU architecture type of the managed instance.

AutonomousSettings

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

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 that contains the managed instance.

Remarks

Required

Description

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

User-specified description of the managed instance.

DisplayName

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

User-friendly name for 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

IsManagedByAutonomousLinux

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

Indicates whether Autonomous Linux manages this instance.

IsManagementStation

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

Whether this managed instance is acting as an on-premises management station.

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.

LifecycleEnvironment

Declaration
[JsonProperty(PropertyName = "lifecycleEnvironment")]
public Id LifecycleEnvironment { get; set; }
Property Value
Type Description
Id

LifecycleStage

Declaration
[JsonProperty(PropertyName = "lifecycleStage")]
public Id LifecycleStage { get; set; }
Property Value
Type Description
Id

Location

Declaration
[JsonProperty(PropertyName = "location")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ManagedInstanceLocation? Location { get; set; }
Property Value
Type Description
ManagedInstanceLocation?

The location of the managed instance.

ManagedInstanceGroup

Declaration
[JsonProperty(PropertyName = "managedInstanceGroup")]
public Id ManagedInstanceGroup { get; set; }
Property Value
Type Description
Id

NotificationTopicId

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

The OCID for the Oracle Notifications service (ONS) topic. ONS is the channel used to send notifications to the customer.

OsFamily

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

The operating system type of the managed instance.

Status

Declaration
[Required(ErrorMessage = "Status is required.")]
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ManagedInstanceStatus? Status { get; set; }
Property Value
Type Description
ManagedInstanceStatus?

Current status of the managed instance.

Remarks

Required

TenancyId

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

The OCID of the tenancy this managed instance resides in.

Remarks

Required

UpdatesAvailable

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

Number of updates available for installation.

In this article
Back to top