Show / Hide Table of Contents

Class DesktopImage

Provides information about the desktop image.

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

Properties

ImageId

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

The OCID of the desktop image.

Remarks

Required

ImageName

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

The name of the desktop image.

Remarks

Required

OperatingSystem

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

The operating system of the desktop image, e.g. "Oracle Linux", "Windows".

In this article
Back to top