Show / Hide Table of Contents

Class DesktopPoolSummary

Provides information about the desktop pool such as number of active desktops, name, OCID, state, and maximum size.

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

Properties

ActiveDesktops

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

The number of active desktops in the desktop pool.

CompartmentId

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

The OCID of the compartment which will contain the desktop pool.

Remarks

Required

ContactDetails

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

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

Remarks

Required

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"}}

DisplayName

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

A user friendly display name. Avoid entering confidential information.

Remarks

Required

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"}

Id

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

The OCID of the desktop pool.

Remarks

Required

LifecycleState

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

The current state of the desktop pool.

Remarks

Required

MaximumSize

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

The maximum number of desktops permitted in the desktop pool.

Remarks

Required

TimeCreated

Declaration
[Required(ErrorMessage = "TimeCreated is required.")]
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The date and time the resource was created.

Remarks

Required

In this article
Back to top