Show / Hide Table of Contents

Class ApplianceImageSummary

Description of the ApplianceImage.

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

Properties

Checksum

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

The checksum of the image file.

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

The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. 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

The name of the image to be displayed.

Remarks

Required

DownloadUrl

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

The URL from which the appliance image can be downloaded.

Remarks

Required

FileName

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

The name of the appliance Image file.

Remarks

Required

Format

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

The file format of the image file.

Remarks

Required

FreeformTags

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

The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. 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

Unique identifier that is immutable on creation.

Remarks

Required

LifecycleState

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

The current state of the appliance image.

Platform

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

The virtualization platform that the image file supports.

Remarks

Required

SizeInMBs

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

The size of the image file in megabytes.

Remarks

Required

TimeCreated

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

The time when the appliance image was created.An RFC3339 formatted datetime string.

Remarks

Required

TimeUpdated

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

The time when the appliance image was last updated. An RFC3339 formatted datetime string.

Remarks

Required

Version

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

The version of the image file.

Remarks

Required

In this article
Back to top