Show / Hide Table of Contents

Class FirmwareBundleTransitions

A map of firmware bundle upgrades/downgrades validated by OCI.

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

Properties

Downgrades

Declaration
[JsonProperty(PropertyName = "downgrades")]
public List<string> Downgrades { get; set; }
Property Value
Type Description
List<string>

An array of OCIDs of validated firmware bundle downgrades.

Upgrades

Declaration
[JsonProperty(PropertyName = "upgrades")]
public List<string> Upgrades { get; set; }
Property Value
Type Description
List<string>

An array of OCIDs of validated firmware bundle upgrades.

In this article
Back to top