Show / Hide Table of Contents

Class WorkflowGroupComponent

Workflow Group Component Details.

Inheritance
object
WorkflowComponent
WorkflowGroupComponent
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 WorkflowGroupComponent : WorkflowComponent

Properties

GroupName

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

Name of the group.

Remarks

Required

Steps

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

Tasks within the Group. Provide the stepName for all applicable tasks.

In this article
Back to top