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
UpdateRunbookVersionDetails
Assembly: OCI.DotNetSDK.Fleetappsmanagement.dll
Syntax
public class UpdateRunbookVersionDetails
Properties
ExecutionWorkflowDetails
Declaration
[JsonProperty(PropertyName = "executionWorkflowDetails")]
public ExecutionWorkflowDetails ExecutionWorkflowDetails { get; set; }
Property Value
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
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.
|