Show / Hide Table of Contents

Class GroupTask

Group task is a construct that represents a container of tasks for execution.

Inheritance
object
BatchTask
GroupTask
Inherited Members
BatchTask.Id
BatchTask.Name
BatchTask.HierarchicalName
BatchTask.GroupTaskName
BatchTask.Description
BatchTask.LifecycleState
BatchTask.LifecycleDetails
BatchTask.EntitlementClaims
BatchTask.Dependencies
BatchTask.EnvironmentVariables
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.BatchService.Models
Assembly: OCI.DotNetSDK.Batch.dll
Syntax
public class GroupTask : BatchTask

Properties

Tasks

Declaration
[JsonProperty(PropertyName = "tasks")]
public List<string> Tasks { get; set; }
Property Value
Type Description
List<string>

The names of tasks contained directly (non-recursively) within this group task.

In this article
Back to top