AIProjectMemoryStoresOperations.GetUpdateResultAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| GetUpdateResultAsync(String, String, RequestOptions) |
[Protocol Method] Get memory store update result.
|
| GetUpdateResultAsync(String, String, CancellationToken) |
Get memory store update result. |
GetUpdateResultAsync(String, String, RequestOptions)
[Protocol Method] Get memory store update result.
- This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
public virtual System.Threading.Tasks.Task<System.ClientModel.ClientResult> GetUpdateResultAsync(string name, string updateId, System.ClientModel.Primitives.RequestOptions options);
abstract member GetUpdateResultAsync : string * string * System.ClientModel.Primitives.RequestOptions -> System.Threading.Tasks.Task<System.ClientModel.ClientResult>
override this.GetUpdateResultAsync : string * string * System.ClientModel.Primitives.RequestOptions -> System.Threading.Tasks.Task<System.ClientModel.ClientResult>
Public Overridable Function GetUpdateResultAsync (name As String, updateId As String, options As RequestOptions) As Task(Of ClientResult)
Parameters
- name
- String
The name of the memory store.
- updateId
- String
The ID of the memory update operation.
- 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
name or updateId is null.
name or updateId is an empty string, and was expected to be non-empty.
Service returned a non-success status code.
Applies to
GetUpdateResultAsync(String, String, CancellationToken)
Get memory store update result.
public virtual System.Threading.Tasks.Task<System.ClientModel.ClientResult<Azure.AI.Projects.MemoryUpdateResult>> GetUpdateResultAsync(string name, string updateId, System.Threading.CancellationToken cancellationToken = default);
abstract member GetUpdateResultAsync : string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.ClientModel.ClientResult<Azure.AI.Projects.MemoryUpdateResult>>
override this.GetUpdateResultAsync : string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.ClientModel.ClientResult<Azure.AI.Projects.MemoryUpdateResult>>
Public Overridable Function GetUpdateResultAsync (name As String, updateId As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of ClientResult(Of MemoryUpdateResult))
Parameters
- name
- String
The name of the memory store.
- updateId
- String
The ID of the memory update operation.
- cancellationToken
- CancellationToken
The cancellation token that can be used to cancel the operation.
Returns
Exceptions
name or updateId is null.
name or updateId is an empty string, and was expected to be non-empty.
Service returned a non-success status code.