Show / Hide Table of Contents

Class ManagementAgentImageSummary

Supported Agent downloads

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

Properties

Checksum

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

Agent image content SHA256 Hash

Id

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

Agent image resource id

Remarks

Required

ImageObjectStorageDetails

Declaration
[JsonProperty(PropertyName = "imageObjectStorageDetails")]
public ObjectDetails ImageObjectStorageDetails { get; set; }
Property Value
Type Description
ObjectDetails

LifecycleState

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

The current state of Management Agent Image

ObjectUrl

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

Object storage URL for download

PackageArchitectureType

Declaration
[JsonProperty(PropertyName = "packageArchitectureType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ArchitectureTypes? PackageArchitectureType { get; set; }
Property Value
Type Description
ArchitectureTypes?

The installation package target architecture type

PackageType

Declaration
[JsonProperty(PropertyName = "packageType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public PackageTypes? PackageType { get; set; }
Property Value
Type Description
PackageTypes?

The installation package type

PlatformName

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

Agent image platform display name

PlatformType

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

Agent image platform type

Remarks

Required

Size

Declaration
[JsonProperty(PropertyName = "size")]
public decimal? Size { get; set; }
Property Value
Type Description
decimal?

Agent image size in bytes

Version

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

Agent image version

Remarks

Required

In this article
Back to top