Show / Hide Table of Contents

Class DisconnectConfig

Action and grace period for disconnect

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

Properties

Action

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

a disconnect action to be triggered

Remarks

Required

GracePeriodInMinutes

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

The period of time (in minutes) after disconnect before any action occurs. If the value is not provided, a default value is used.

In this article
Back to top