Show / Hide Table of Contents

Class Details

The details of the task.

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

Properties

ExecutionDetails

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

Required

IsApplySubjectTask

Declaration
[JsonProperty(PropertyName = "isApplySubjectTask")]
public bool? IsApplySubjectTask { get; set; }
Property Value
Type Description
bool?

Is this an Apply Subject Task? Set this to true for a Patch Execution Task which applies patches(subjects) on a target.

IsDiscoveryOutputTask

Declaration
[JsonProperty(PropertyName = "isDiscoveryOutputTask")]
public bool? IsDiscoveryOutputTask { get; set; }
Property Value
Type Description
bool?

Is this a discovery output task?

Operation

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

The lifecycle operation performed by the runbook.

OsType

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

The OS for the task

Platform

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

The platform of the runbook.

Properties

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

Scope

Declaration
[Required(ErrorMessage = "Scope is required.")]
[JsonProperty(PropertyName = "scope")]
[JsonConverter(typeof(ResponseEnumConverter))]
public TaskScope? Scope { get; set; }
Property Value
Type Description
TaskScope?

The scope of the task

Remarks

Required

In this article
Back to top