Show / Hide Table of Contents

Class PlatformVersions

A platform's pinned firmware versions.

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

Properties

Platform

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

The name of the platform supported by this bundle.

Versions

Declaration
[JsonProperty(PropertyName = "versions")]
public List<ComponentVersion> Versions { get; set; }
Property Value
Type Description
List<ComponentVersion>

An array of pinned components and their respective firmware versions.

In this article
Back to top