Show / Hide Table of Contents

Class ActivityResourceTarget

Activity Resource Target.

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

Properties

Description

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

Description of the Execution status. If there are any errors, this can also include a short error message.

Status

Declaration
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public JobStatus? Status { get; set; }
Property Value
Type Description
JobStatus?

Status of the Job at target Level.

TargetName

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

Target Name.

Remarks

Required

In this article
Back to top