Show / Hide Table of Contents

Class FirmwareBundleSummary

Summary of a firmware bundle, returned in list operations.

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

Properties

AllowableTransitions

Declaration
[JsonProperty(PropertyName = "allowableTransitions")]
public FirmwareBundleTransitions AllowableTransitions { get; set; }
Property Value
Type Description
FirmwareBundleTransitions

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 of this firmware bundle.

Remarks

Required

Description

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

A brief description or metadata about this firmware bundle.

DisplayName

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

The user-friendly name of this firmware bundle.

Remarks

Required

Id

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

The OCID of this firmware bundle.

Remarks

Required

LifecycleState

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

The current state of the firmware bundle.

Remarks

Required

Platforms

Declaration
[Required(ErrorMessage = "Platforms is required.")]
[JsonProperty(PropertyName = "platforms")]
public List<PlatformVersions> Platforms { get; set; }
Property Value
Type Description
List<PlatformVersions>

A map of platforms to pinned firmware versions.

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 firmware bundle was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

Remarks

Required

TimeUpdated

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

The date and time the firmware bundle was updated, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

Remarks

Required

In this article
Back to top