PerformedAction

class oci.generative_ai_agent_runtime.models.PerformedAction(**kwargs)

Bases: object

The base structure for an action that has already been performed.

Attributes

PERFORMED_ACTION_TYPE_FUNCTION_CALLING_PERFORMED_ACTION A constant which can be used with the performed_action_type property of a PerformedAction.
PERFORMED_ACTION_TYPE_HUMAN_APPROVAL_PERFORMED_ACTION A constant which can be used with the performed_action_type property of a PerformedAction.
action_id [Required] Gets the action_id of this PerformedAction.
performed_action_type [Required] Gets the performed_action_type of this PerformedAction.

Methods

__init__(**kwargs) Initializes a new PerformedAction 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.
PERFORMED_ACTION_TYPE_FUNCTION_CALLING_PERFORMED_ACTION = 'FUNCTION_CALLING_PERFORMED_ACTION'

A constant which can be used with the performed_action_type property of a PerformedAction. This constant has a value of “FUNCTION_CALLING_PERFORMED_ACTION”

PERFORMED_ACTION_TYPE_HUMAN_APPROVAL_PERFORMED_ACTION = 'HUMAN_APPROVAL_PERFORMED_ACTION'

A constant which can be used with the performed_action_type property of a PerformedAction. This constant has a value of “HUMAN_APPROVAL_PERFORMED_ACTION”

__init__(**kwargs)

Initializes a new PerformedAction 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:
  • action_id (str) – The value to assign to the action_id property of this PerformedAction.
  • performed_action_type (str) – The value to assign to the performed_action_type property of this PerformedAction. Allowed values for this property are: “HUMAN_APPROVAL_PERFORMED_ACTION”, “FUNCTION_CALLING_PERFORMED_ACTION”
action_id

[Required] Gets the action_id of this PerformedAction. The unique identifier for the action that has been performed.

Returns:The action_id of this PerformedAction.
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.

performed_action_type

[Required] Gets the performed_action_type of this PerformedAction. Specifies the type of the performed action.

Allowed values for this property are: “HUMAN_APPROVAL_PERFORMED_ACTION”, “FUNCTION_CALLING_PERFORMED_ACTION”

Returns:The performed_action_type of this PerformedAction.
Return type:str