ActionGroup¶
- 
class oci.fleet_apps_management.models.ActionGroup(**kwargs)¶
- Bases: - object- Action Group. - Attributes - KIND_FLEET_USING_RUNBOOK- A constant which can be used with the kind property of a ActionGroup. - display_name- Gets the display_name of this ActionGroup. - kind- [Required] Gets the kind of this ActionGroup. - Methods - __init__(**kwargs)- Initializes a new ActionGroup object with values from keyword arguments. - get_subtype(object_dictionary)- Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. - 
KIND_FLEET_USING_RUNBOOK= 'FLEET_USING_RUNBOOK'¶
- A constant which can be used with the kind property of a ActionGroup. This constant has a value of “FLEET_USING_RUNBOOK” 
 - 
__init__(**kwargs)¶
- Initializes a new ActionGroup object with values from keyword arguments. This class has the following subclasses and if you are using this class as input to a service operations then you should favor using a subclass over the base class: - The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - display_name (str) – The value to assign to the display_name property of this ActionGroup.
- kind (str) – The value to assign to the kind property of this ActionGroup. Allowed values for this property are: “FLEET_USING_RUNBOOK”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
 
 - 
display_name¶
- Gets the display_name of this ActionGroup. A user-friendly name. Does not have to be unique, and it’s changeable. Avoid entering confidential information. - Example: My new resource - Returns: - The display_name of this ActionGroup. - Return type: - str 
 - 
static get_subtype(object_dictionary)¶
- Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. 
 - 
kind¶
- [Required] Gets the kind of this ActionGroup. Action Group kind - Allowed values for this property are: “FLEET_USING_RUNBOOK”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’. - Returns: - The kind of this ActionGroup. - Return type: - str 
 
-