WorkflowGroup¶
-
class
oci.fleet_apps_management.models.
WorkflowGroup
(**kwargs)¶ Bases:
object
Workflow Group Layout.
Attributes
TYPE_PARALLEL_RESOURCE_GROUP
A constant which can be used with the type property of a WorkflowGroup. TYPE_ROLLING_RESOURCE_GROUP
A constant which can be used with the type property of a WorkflowGroup. group_name
[Required] Gets the group_name of this WorkflowGroup. steps
[Required] Gets the steps of this WorkflowGroup. type
[Required] Gets the type of this WorkflowGroup. Methods
__init__
(**kwargs)Initializes a new WorkflowGroup object with values from keyword arguments. -
TYPE_PARALLEL_RESOURCE_GROUP
= 'PARALLEL_RESOURCE_GROUP'¶ A constant which can be used with the type property of a WorkflowGroup. This constant has a value of “PARALLEL_RESOURCE_GROUP”
-
TYPE_ROLLING_RESOURCE_GROUP
= 'ROLLING_RESOURCE_GROUP'¶ A constant which can be used with the type property of a WorkflowGroup. This constant has a value of “ROLLING_RESOURCE_GROUP”
-
__init__
(**kwargs)¶ Initializes a new WorkflowGroup object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - group_name (str) – The value to assign to the group_name property of this WorkflowGroup.
- type (str) – The value to assign to the type property of this WorkflowGroup. Allowed values for this property are: “PARALLEL_RESOURCE_GROUP”, “ROLLING_RESOURCE_GROUP”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
- steps (list[oci.fleet_apps_management.models.WorkflowComponent]) – The value to assign to the steps property of this WorkflowGroup.
-
group_name
¶ [Required] Gets the group_name of this WorkflowGroup. Name of the group.
Returns: The group_name of this WorkflowGroup. Return type: str
-
steps
¶ [Required] Gets the steps of this WorkflowGroup. Steps within the Group.
Returns: The steps of this WorkflowGroup. Return type: list[oci.fleet_apps_management.models.WorkflowComponent]
-
type
¶ [Required] Gets the type of this WorkflowGroup. Workflow Group Details.
Allowed values for this property are: “PARALLEL_RESOURCE_GROUP”, “ROLLING_RESOURCE_GROUP”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The type of this WorkflowGroup. Return type: str
-