Show / Hide Table of Contents

Class ManagementStationDetails

Provides the management station details used to configure a managed instance.

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

Properties

PrimaryManagementStationId

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

The OCID of the management station for the instance to use as primary management station.

Remarks

Required

SecondaryManagementStationId

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

The OCID of the management station for the instance to use as secondary managment station.

WorkRequestDetails

Declaration
[JsonProperty(PropertyName = "workRequestDetails")]
public WorkRequestDetails WorkRequestDetails { get; set; }
Property Value
Type Description
WorkRequestDetails
In this article
Back to top