Class Group
The group of the runbook.
Inherited Members
Namespace: Oci.FleetappsmanagementService.Models
Assembly: OCI.DotNetSDK.Fleetappsmanagement.dll
Syntax
public class Group
Properties
Name
Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string | The name of the group. |
Remarks
Required
Properties
Declaration
[JsonProperty(PropertyName = "properties")]
public ComponentProperties Properties { get; set; }
Property Value
Type | Description |
---|---|
ComponentProperties |
Type
Declaration
[Required(ErrorMessage = "Type is required.")]
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(ResponseEnumConverter))]
public Group.TypeEnum? Type { get; set; }
Property Value
Type | Description |
---|---|
Group.TypeEnum? | The type of the group. PARALLEL_TASK_GROUP : Helps to execute tasks parallelly inside a resource. PARALLEL_RESOURCE_GROUP : Executes tasks across resources parallelly. ROLLING_RESOURCE_GROUP : Executes tasks across resources in a rolling order. |
Remarks
Required