Show / Hide Table of Contents

Class AssociatedLocalTaskDetails

The details of the local task. The local tasks are specific to a single runbook.

Inheritance
object
AssociatedTaskDetails
AssociatedLocalTaskDetails
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 AssociatedLocalTaskDetails : AssociatedTaskDetails

Properties

Description

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

The description of the task.

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? Ex. Patch Execution Task

IsCopyToLibraryEnabled

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

Make a copy of this task in Library

IsDiscoveryOutputTask

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

Is this a discovery output task?

Name

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

The name of the task

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
In this article
Back to top