Show / Hide Table of Contents

Class ComponentVersion

Represents a specific component type and its associated firmware versions.

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

Properties

ComponentType

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

The type of component.

Remarks

Required

Version

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

A list of firmware versions associated with this component type.

Remarks

Required

In this article
Back to top