Show / Hide Table of Contents

Class InventoryRecordComponent

Details about a target component

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

Properties

ComponentName

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

Name of the target component

Remarks

Required

ComponentPath

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

Path of the component

Remarks

Required

ComponentVersion

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

Version of the target component

Remarks

Required

Properties

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

List of component properties

Remarks

Required

In this article
Back to top