Share via


WorkflowActionOutputItemResource Constructors

Definition

Overloads

WorkflowActionOutputItemResource()

Source:
WorkflowActionOutputItemResource.cs

Initializes a new instance of WorkflowActionOutputItemResource for deserialization.

public WorkflowActionOutputItemResource();
Public Sub New ()

Applies to

WorkflowActionOutputItemResource(String, String, WorkflowActionOutputItemResourceStatus)

Source:
WorkflowActionOutputItemResource.cs

Initializes a new instance of WorkflowActionOutputItemResource.

public WorkflowActionOutputItemResource(string id, string actionId, Azure.AI.AgentServer.Contracts.Generated.Agents.WorkflowAgents.WorkflowActionOutputItemResourceStatus status);
new Azure.AI.AgentServer.Contracts.Generated.Agents.WorkflowAgents.WorkflowActionOutputItemResource : string * string * Azure.AI.AgentServer.Contracts.Generated.Agents.WorkflowAgents.WorkflowActionOutputItemResourceStatus -> Azure.AI.AgentServer.Contracts.Generated.Agents.WorkflowAgents.WorkflowActionOutputItemResource
Public Sub New (id As String, actionId As String, status As WorkflowActionOutputItemResourceStatus)

Parameters

id
String
actionId
String

Unique identifier for the action.

status
WorkflowActionOutputItemResourceStatus

Status of the action (e.g., 'in_progress', 'completed', 'failed', 'cancelled').

Exceptions

id or actionId is null.

Applies to

WorkflowActionOutputItemResource(ItemType, String, CreatedBy, IDictionary<String,BinaryData>, String, String, String, String, WorkflowActionOutputItemResourceStatus)

Source:
WorkflowActionOutputItemResource.cs

Initializes a new instance of WorkflowActionOutputItemResource.

public WorkflowActionOutputItemResource(Azure.AI.AgentServer.Contracts.Generated.OpenAI.ItemType type, string id, Azure.AI.AgentServer.Contracts.Generated.OpenAI.CreatedBy createdBy, System.Collections.Generic.IDictionary<string,BinaryData> serializedAdditionalRawData, string kind, string actionId, string parentActionId, string previousActionId, Azure.AI.AgentServer.Contracts.Generated.Agents.WorkflowAgents.WorkflowActionOutputItemResourceStatus status);
new Azure.AI.AgentServer.Contracts.Generated.Agents.WorkflowAgents.WorkflowActionOutputItemResource : Azure.AI.AgentServer.Contracts.Generated.OpenAI.ItemType * string * Azure.AI.AgentServer.Contracts.Generated.OpenAI.CreatedBy * System.Collections.Generic.IDictionary<string, BinaryData> * string * string * string * string * Azure.AI.AgentServer.Contracts.Generated.Agents.WorkflowAgents.WorkflowActionOutputItemResourceStatus -> Azure.AI.AgentServer.Contracts.Generated.Agents.WorkflowAgents.WorkflowActionOutputItemResource
Public Sub New (type As ItemType, id As String, createdBy As CreatedBy, serializedAdditionalRawData As IDictionary(Of String, BinaryData), kind As String, actionId As String, parentActionId As String, previousActionId As String, status As WorkflowActionOutputItemResourceStatus)

Parameters

type
ItemType
id
String
createdBy
CreatedBy

The information about the creator of the item.

serializedAdditionalRawData
IDictionary<String,BinaryData>

Keeps track of any properties unknown to the library.

kind
String

The kind of CSDL action (e.g., 'SetVariable', 'InvokeAzureAgent').

actionId
String

Unique identifier for the action.

parentActionId
String

ID of the parent action if this is a nested action.

previousActionId
String

ID of the previous action if this action follows another.

status
WorkflowActionOutputItemResourceStatus

Status of the action (e.g., 'in_progress', 'completed', 'failed', 'cancelled').

Applies to