Class ComponentVersion
Represents a specific component type and its associated firmware versions.
Inherited Members
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