Show / Hide Table of Contents

Class FleetBasedActionGroup

A string variable that holds a value

Inheritance
object
ActionGroup
FleetBasedActionGroup
Inherited Members
ActionGroup.DisplayName
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 FleetBasedActionGroup : ActionGroup

Properties

FleetId

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

ID of the fleet

Remarks

Required

RunbookId

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

ID of the runbook

Remarks

Required

RunbookVersionName

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

Name of the runbook version

Remarks

Required

Sequence

Declaration
[JsonProperty(PropertyName = "sequence")]
public int? Sequence { get; set; }
Property Value
Type Description
int?

Sequence of the Action Group. Action groups will be executed in a seuential order. All Action Groups having the same sequence will be executed parallely. If no value is provided a default value of 1 will be given.

In this article
Back to top