UpdateRunbookVersionDetails¶
-
class
oci.fleet_apps_management.models.UpdateRunbookVersionDetails(**kwargs)¶ Bases:
objectThe 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.
Methods
__init__(**kwargs)Initializes a new UpdateRunbookVersionDetails object with values from keyword arguments. Attributes
execution_workflow_detailsGets the execution_workflow_details of this UpdateRunbookVersionDetails. groupsGets the groups of this UpdateRunbookVersionDetails. rollback_workflow_detailsGets the rollback_workflow_details of this UpdateRunbookVersionDetails. tasksGets the tasks of this UpdateRunbookVersionDetails. -
__init__(**kwargs)¶ Initializes a new UpdateRunbookVersionDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - tasks (list[oci.fleet_apps_management.models.Task]) – The value to assign to the tasks property of this UpdateRunbookVersionDetails.
- groups (list[oci.fleet_apps_management.models.Group]) – The value to assign to the groups property of this UpdateRunbookVersionDetails.
- execution_workflow_details (oci.fleet_apps_management.models.ExecutionWorkflowDetails) – The value to assign to the execution_workflow_details property of this UpdateRunbookVersionDetails.
- rollback_workflow_details (oci.fleet_apps_management.models.RollbackWorkflowDetails) – The value to assign to the rollback_workflow_details property of this UpdateRunbookVersionDetails.
-
execution_workflow_details¶ Gets the execution_workflow_details of this UpdateRunbookVersionDetails.
Returns: The execution_workflow_details of this UpdateRunbookVersionDetails. Return type: oci.fleet_apps_management.models.ExecutionWorkflowDetails
-
groups¶ Gets the groups of this UpdateRunbookVersionDetails. The groups of the runbook version.
Returns: The groups of this UpdateRunbookVersionDetails. Return type: list[oci.fleet_apps_management.models.Group]
-
rollback_workflow_details¶ Gets the rollback_workflow_details of this UpdateRunbookVersionDetails.
Returns: The rollback_workflow_details of this UpdateRunbookVersionDetails. Return type: oci.fleet_apps_management.models.RollbackWorkflowDetails
-
tasks¶ Gets the tasks of this UpdateRunbookVersionDetails. A set of tasks to execute in the runbook.
Returns: The tasks of this UpdateRunbookVersionDetails. Return type: list[oci.fleet_apps_management.models.Task]
-