Show / Hide Table of Contents

Class DiscoveredTarget

A target that is discovered by the Software discovery process.

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

Properties

Product

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

Product that the target belongs to.

Remarks

Required

ResourceId

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

Unique key that identifies the resource that the target belongs to.

Remarks

Required

TargetId

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

ID of the Target. Can be the target name if a separate ID is not available.

Remarks

Required

TargetName

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

Target Name.

Remarks

Required

Version

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

Current version of the target.

In this article
Back to top