Prompt¶
-
class
oci.fleet_apps_management.models.Prompt(**kwargs)¶ Bases:
objectPrompt.
Attributes
ACCEPTANCE_CONDITION_ALLA constant which can be used with the acceptance_condition property of a Prompt. ACCEPTANCE_CONDITION_ANYA constant which can be used with the acceptance_condition property of a Prompt. acceptance_condition[Required] Gets the acceptance_condition of this Prompt. choice_groupGets the choice_group of this Prompt. Methods
__init__(**kwargs)Initializes a new Prompt object with values from keyword arguments. -
ACCEPTANCE_CONDITION_ALL= 'ALL'¶ A constant which can be used with the acceptance_condition property of a Prompt. This constant has a value of “ALL”
-
ACCEPTANCE_CONDITION_ANY= 'ANY'¶ A constant which can be used with the acceptance_condition property of a Prompt. This constant has a value of “ANY”
-
__init__(**kwargs)¶ Initializes a new Prompt object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - acceptance_condition (str) – The value to assign to the acceptance_condition property of this Prompt. Allowed values for this property are: “ANY”, “ALL”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
- choice_group (list[oci.fleet_apps_management.models.Choice]) – The value to assign to the choice_group property of this Prompt.
-
acceptance_condition¶ [Required] Gets the acceptance_condition of this Prompt. acceptance condition.
Allowed values for this property are: “ANY”, “ALL”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The acceptance_condition of this Prompt. Return type: str
-
choice_group¶ Gets the choice_group of this Prompt. List of choice.
Returns: The choice_group of this Prompt. Return type: list[oci.fleet_apps_management.models.Choice]
-