Show / Hide Table of Contents

Class ManagedInstanceGroup

An object that defines the managed instance group.

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

Properties

ArchType

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

The CPU architecture of the instances in the managed instance group.

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 group.

Remarks

Required

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations": {"CostCenter": "42"}}

Description

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

User-specified information about the managed instance group.

DisplayName

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

A user-friendly name for the managed instance group.

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

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 group.

Remarks

Required

IsManagedByAutonomousLinux

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

Indicates whether the Autonomous Linux service manages the group.

LifecycleState

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

The current state of the managed instance group.

Remarks

Required

Location

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

The location of managed instances attached to the group.

ManagedInstanceCount

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

The number of managed instances in the group.

ManagedInstanceIds

Declaration
[JsonProperty(PropertyName = "managedInstanceIds")]
public List<string> ManagedInstanceIds { get; set; }
Property Value
Type Description
List<string>

The list of managed instance OCIDs attached to the managed instance group.

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 instances in the managed instance group.

PendingJobCount

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

The number of scheduled jobs pending against the managed instance group.

SoftwareSourceIds

Declaration
[JsonProperty(PropertyName = "softwareSourceIds")]
public List<SoftwareSourceDetails> SoftwareSourceIds { get; set; }
Property Value
Type Description
List<SoftwareSourceDetails>

The list of software source OCIDs that the managed instance group will use.

SoftwareSources

Declaration
[JsonProperty(PropertyName = "softwareSources")]
public List<SoftwareSourceDetails> SoftwareSources { get; set; }
Property Value
Type Description
List<SoftwareSourceDetails>

The list of software sources that the managed instance group will use.

SystemTags

Declaration
[JsonProperty(PropertyName = "systemTags")]
public Dictionary<string, Dictionary<string, object>> SystemTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud": {"free-tier-retained": "true"}}

TimeCreated

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

The time the managed instance group was created (in RFC 3339 format).

TimeModified

Declaration
[JsonProperty(PropertyName = "timeModified")]
public DateTime? TimeModified { get; set; }
Property Value
Type Description
DateTime?

The time the managed instance group was last modified (in RFC 3339 format).

VendorName

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

The vendor of the operating system used by the managed instances in the group.

In this article
Back to top