Show / Hide Table of Contents

Class InactivityConfig

Action and grace period for inactivity

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

Properties

Action

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

an inactivity 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) during which the session must remain inactive before any action occurs. If the value is not provided, a default value is used.

In this article
Back to top