Show / Hide Table of Contents

Class MirrorConfiguration

Mirror information used for the management station configuration.

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

Properties

Directory

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

Path to the data volume on the management station where software source mirrors are stored.

Remarks

Required

IsSslverifyEnabled

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

When enabled, the SSL certificate is verified whenever an instance installs or updates a package from a software source that is mirrored on the management station.

Port

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

Default mirror listening port for http.

Remarks

Required

Sslcert

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

Path to the SSL cerfificate.

Sslport

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

Default mirror listening port for https.

Remarks

Required

In this article
Back to top