Language

AgentInsightMonitors.Create Method

Definition

Overloads

Name Description
Create(AgentInsightMonitorCreate, CancellationToken)

Create an Agent Insights monitor for an agent.

Create(BinaryContent, RequestOptions)

[Protocol Method] Create an Agent Insights monitor for an agent.

  • This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.

Create(AgentInsightMonitorCreate, CancellationToken)

Source:
AgentInsightMonitors.cs

Create an Agent Insights monitor for an agent.

public virtual System.ClientModel.ClientResult<Azure.AI.Projects.AgentInsightMonitor> Create(Azure.AI.Projects.AgentInsightMonitorCreate monitor, System.Threading.CancellationToken cancellationToken = default);
abstract member Create : Azure.AI.Projects.AgentInsightMonitorCreate * System.Threading.CancellationToken -> System.ClientModel.ClientResult<Azure.AI.Projects.AgentInsightMonitor>
override this.Create : Azure.AI.Projects.AgentInsightMonitorCreate * System.Threading.CancellationToken -> System.ClientModel.ClientResult<Azure.AI.Projects.AgentInsightMonitor>
Public Overridable Function Create (monitor As AgentInsightMonitorCreate, Optional cancellationToken As CancellationToken = Nothing) As ClientResult(Of AgentInsightMonitor)

Parameters

monitor
AgentInsightMonitorCreate

The monitor to create.

cancellationToken
CancellationToken

The cancellation token that can be used to cancel the operation.

Returns

Exceptions

monitor is null.

Service returned a non-success status code.

Applies to

Create(BinaryContent, RequestOptions)

Source:
AgentInsightMonitors.cs

[Protocol Method] Create an Agent Insights monitor for an agent.

  • This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
public virtual System.ClientModel.ClientResult Create(System.ClientModel.BinaryContent content, System.ClientModel.Primitives.RequestOptions options = default);
abstract member Create : System.ClientModel.BinaryContent * System.ClientModel.Primitives.RequestOptions -> System.ClientModel.ClientResult
override this.Create : System.ClientModel.BinaryContent * System.ClientModel.Primitives.RequestOptions -> System.ClientModel.ClientResult
Public Overridable Function Create (content As BinaryContent, Optional options As RequestOptions = Nothing) As ClientResult

Parameters

content
BinaryContent

The content to send as the body of the request.

options
RequestOptions

The request options, which can override default behaviors of the client pipeline on a per-call basis.

Returns

The response returned from the service.

Exceptions

content is null.

Service returned a non-success status code.

Applies to