Show / Hide Table of Contents

Class UpdateDesktopPoolDetails

Provides the details of a request to update the desktop pool.

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

Properties

AvailabilityPolicy

Declaration
[JsonProperty(PropertyName = "availabilityPolicy")]
public DesktopAvailabilityPolicy AvailabilityPolicy { get; set; }
Property Value
Type Description
DesktopAvailabilityPolicy

ContactDetails

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

Contact information of the desktop pool administrator. Avoid entering confidential information.

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations": {"CostCenter": "42"}}

Description

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

A user friendly description providing additional information about the resource. Avoid entering confidential information.

DevicePolicy

Declaration
[JsonProperty(PropertyName = "devicePolicy")]
public DesktopDevicePolicy DevicePolicy { get; set; }
Property Value
Type Description
DesktopDevicePolicy

DisplayName

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

A user friendly display name. Avoid entering confidential information.

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

MaximumSize

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

The maximum number of desktops permitted in the desktop pool.

SessionLifecycleActions

Declaration
[JsonProperty(PropertyName = "sessionLifecycleActions")]
public UpdateDesktopPoolDesktopSessionLifecycleActions SessionLifecycleActions { get; set; }
Property Value
Type Description
UpdateDesktopPoolDesktopSessionLifecycleActions

StandbySize

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

The maximum number of standby desktops available in the desktop pool.

TimeStartScheduled

Declaration
[JsonProperty(PropertyName = "timeStartScheduled")]
public DateTime? TimeStartScheduled { get; set; }
Property Value
Type Description
DateTime?

The start time of the desktop pool.

TimeStopScheduled

Declaration
[JsonProperty(PropertyName = "timeStopScheduled")]
public DateTime? TimeStopScheduled { get; set; }
Property Value
Type Description
DateTime?

The stop time of the desktop pool.

In this article
Back to top