Show / Hide Table of Contents

Class CreateManagedInstanceGroupDetails

Provides the information used to create a new managed instance group.

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

Properties

ArchType

Declaration
[Required(ErrorMessage = "ArchType is required.")]
[JsonProperty(PropertyName = "archType")]
[JsonConverter(typeof(StringEnumConverter))]
public ArchType? ArchType { get; set; }
Property Value
Type Description
ArchType?

The CPU architecture type of the managed instances that will be attached to this group.

Remarks

Required

AutonomousSettings

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

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 description of the managed instance group. Avoid entering confidential information.

DisplayName

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

A user-friendly name for the managed instance group. Does not have to be unique and you can change the name later. Avoid entering confidential information.

Remarks

Required

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"}

Location

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

The location of managed instances attached to the group. If no location is provided, the default is on premises.

ManagedInstanceIds

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

The list of managed instance OCIDs to be added to the 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
[Required(ErrorMessage = "OsFamily is required.")]
[JsonProperty(PropertyName = "osFamily")]
[JsonConverter(typeof(StringEnumConverter))]
public OsFamily? OsFamily { get; set; }
Property Value
Type Description
OsFamily?

The operating system type of the managed instances that will be attached to this group.

Remarks

Required

SoftwareSourceIds

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

The list of software source OCIDs available to the managed instances in the group.

VendorName

Declaration
[Required(ErrorMessage = "VendorName is required.")]
[JsonProperty(PropertyName = "vendorName")]
[JsonConverter(typeof(StringEnumConverter))]
public VendorName? VendorName { get; set; }
Property Value
Type Description
VendorName?

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

Remarks

Required

In this article
Back to top