Show / Hide Table of Contents

Class ManagementStationSummary

Provides summary information for a management station.

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

Properties

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 management station.

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 management station.

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 management station.

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

HealthState

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

Overall health status of the managment station.

Hostname

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

Hostname of the management station.

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 management station.

Remarks

Required

LifecycleState

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

The current state of the management station.

Location

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

The location of the instance that is acting as the management station.

ManagedInstanceId

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

The OCID of the instance that is acting as the management station.

MirrorCapacity

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

A decimal number representing the amount of mirror capacity used by the sync.

OverallPercentage

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

A decimal number representing the progress of the current mirror sync.

OverallState

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

Current state of the mirror sync for the management station.

ProfileId

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

The OCID of the registration profile used for the management station.

ScheduledJobId

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

The OCID of the scheduled job for the mirror sync.

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

TimeNextExecution

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

The date and time of the next scheduled mirror sync (in RFC 3339 format).

In this article
Back to top