Show / Hide Table of Contents

Class CreateGroupTaskDetails

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

Inheritance
object
CreateBatchTaskDetails
CreateGroupTaskDetails
Inherited Members
CreateBatchTaskDetails.Name
CreateBatchTaskDetails.Description
CreateBatchTaskDetails.EntitlementClaims
CreateBatchTaskDetails.Dependencies
CreateBatchTaskDetails.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 CreateGroupTaskDetails : CreateBatchTaskDetails

Properties

Tasks

Declaration
[Required(ErrorMessage = "Tasks is required.")]
[JsonProperty(PropertyName = "tasks")]
public List<CreateBatchTaskDetails> Tasks { get; set; }
Property Value
Type Description
List<CreateBatchTaskDetails>

A list of tasks to be executed within this group task.

Remarks

Required

In this article
Back to top