Show / Hide Table of Contents

Class UpdateRunbookVersionDetails

The information to be updated. Versioning runbooks in Fleet Application Management involve assigning unique identifiers or version numbers to different iterations of the runbook to track changes, improvements, and updates over time.

Inheritance
object
UpdateRunbookVersionDetails
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 UpdateRunbookVersionDetails

Properties

ExecutionWorkflowDetails

Declaration
[JsonProperty(PropertyName = "executionWorkflowDetails")]
public ExecutionWorkflowDetails ExecutionWorkflowDetails { get; set; }
Property Value
Type Description
ExecutionWorkflowDetails

Groups

Declaration
[JsonProperty(PropertyName = "groups")]
public List<Group> Groups { get; set; }
Property Value
Type Description
List<Group>

The groups of the runbook version.

RollbackWorkflowDetails

Declaration
[JsonProperty(PropertyName = "rollbackWorkflowDetails")]
public RollbackWorkflowDetails RollbackWorkflowDetails { get; set; }
Property Value
Type Description
RollbackWorkflowDetails

Tasks

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

A set of tasks to execute in the runbook.

In this article
Back to top