Show / Hide Table of Contents

Class OlvmDisplay

Display object in OLVM

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

Properties

Address

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

The IP address of the guest to connect the graphic console client to.

Certificate

Declaration
[JsonProperty(PropertyName = "certificate")]
public OlvmCertificate Certificate { get; set; }
Property Value
Type Description
OlvmCertificate

DisconnectAction

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

Returns the action that will take place when the graphic console is disconnected.

DisconnectActionDelayInMinutes

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

Delay (in minutes) before the graphic console disconnect action is carried out.

DisplayType

Declaration
[JsonProperty(PropertyName = "displayType")]
[JsonConverter(typeof(StringEnumConverter))]
public OlvmDisplay.DisplayTypeEnum? DisplayType { get; set; }
Property Value
Type Description
OlvmDisplay.DisplayTypeEnum?

The graphic console protocol type.

IsAllowOverride

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

Indicates if to override the display address per host.

IsCopyPasteEnabled

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

Indicates whether a user is able to copy and paste content from an external host into the graphic console.

IsFileTransferEnabled

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

Indicates if a user is able to drag and drop files from an external host into the graphic console.

IsSingleQxlPci

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

The engine now sets it automatically according to the operating system.

KeyboardLayout

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

The keyboard layout to use with this graphic console.

Monitors

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

The number of monitors opened for this graphic console.

Port

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

The port address on the guest to connect the graphic console client to

Proxy

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

The proxy IP which will be used by the graphic console client to connect to the guest.

SecurePort

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

The secured port address on the guest, in case of using TLS, to connect the graphic console client to.

In this article
Back to top