Show / Hide Table of Contents

Class TargetComponentSummary

Summary information about an target component.

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

Properties

Name

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

Name of the component

Remarks

Required

Path

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

Path of the component

Remarks

Required

Properties

Declaration
[JsonProperty(PropertyName = "properties")]
public List<TargetPropertySummary> Properties { get; set; }
Property Value
Type Description
List<TargetPropertySummary>

List of properties.

Version

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

Version of the component

Remarks

Required

In this article
Back to top