Show / Hide Table of Contents

Class ManagementAppliance

Information about management appliance.

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

Properties

CompartmentId

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

The OCID of compartment in OCI, that this appliance is going to be created in.

Remarks

Required

ComputeInstanceId

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

The OCID of compute instance of management appliance in OCI.

Configuration

Declaration
[Required(ErrorMessage = "Configuration is required.")]
[JsonProperty(PropertyName = "configuration")]
public ManagementApplianceConfiguration Configuration { get; set; }
Property Value
Type Description
ManagementApplianceConfiguration
Remarks

Required

Connections

Declaration
[Required(ErrorMessage = "Connections is required.")]
[JsonProperty(PropertyName = "connections")]
public List<ManagementApplianceConnection> Connections { get; set; }
Property Value
Type Description
List<ManagementApplianceConnection>

Array of connections for management appliance.

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

DisplayName

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

A descriptive name for the management appliance. It must be unique, start with a letter, and contain only letters, digits, whitespaces, dashes and underscores. 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"}

HeartbeatConnectionStates

Declaration
[JsonProperty(PropertyName = "heartbeatConnectionStates")]
public List<ManagementApplianceConnectionStatus> HeartbeatConnectionStates { get; set; }
Property Value
Type Description
List<ManagementApplianceConnectionStatus>

Current states of connections.

Id

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

The OCID of management appliance.

Remarks

Required

LifecycleDetails

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

Information about current lifecycleState. For FAILED and NEEDS_ATTENTION contains explanations. For other states may contain some details about their progress.

LifecycleState

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

Current state of the management appliance.

Remarks

Required

ManagementAgentId

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

The OCID of management agent, that this appliance is running in.

SddcId

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

The OCID of SDDC in OCI, that this appliance is going to be registered in.

Remarks

Required

SystemTags

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

Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {orcl-cloud: {free-tier-retain: true}}

TimeConfigurationUpdated

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

The date and time the configuration of management appliance was last updated in the format defined by RFC3339.

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 management appliance was created in the format defined by RFC3339.

Remarks

Required

TimeLastHeartbeat

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

The date and time the management appliance has last received heartbeat in the format defined by RFC3339.

TimeUpdated

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

The date and time the management appliance was last updated in the format defined by RFC3339.

In this article
Back to top