DynamicsAXClient Class

Definition

Typed client for dynamicsax connector.

public class DynamicsAXClient : Azure.Connectors.Sdk.ConnectorClientBase
type DynamicsAXClient = class
    inherit ConnectorClientBase
Public Class DynamicsAXClient
Inherits ConnectorClientBase
Inheritance
DynamicsAXClient

Constructors

Name Description
DynamicsAXClient()
DynamicsAXClient(String)

Creates a new DynamicsAXClient with the specified connection runtime URL string. Uses ManagedIdentityCredential by default.

DynamicsAXClient(Uri, TokenCredential, ConnectorClientOptions)

Creates a new DynamicsAXClient with the specified connection runtime URL and credential.

DynamicsAXClient(Uri, TokenCredential)

Creates a new DynamicsAXClient with the specified connection runtime URL and credential.

DynamicsAXClient(Uri)

Creates a new DynamicsAXClient with the specified connection runtime URL. Uses ManagedIdentityCredential by default.

Properties

Name Description
ConnectorName
Pipeline

Gets the HTTP pipeline for making connector requests.

(Inherited from ConnectorClientBase)

Methods

Name Description
CallConnectorAsync(HttpMethod, String, Object, CancellationToken)

Sends a connector API request with no response body. Uses the Azure.Core HttpPipeline for retry, authentication, and diagnostics.

(Inherited from ConnectorClientBase)
CallConnectorAsync<TResponse>(HttpMethod, String, Object, CancellationToken)

Sends a connector API request and deserializes the JSON response. Uses the Azure.Core HttpPipeline for retry, authentication, and diagnostics.

(Inherited from ConnectorClientBase)
DeleteItemAsync(String, String, String, CancellationToken)

Delete record

Dispose() (Inherited from ConnectorClientBase)
Dispose(Boolean)

Disposes the connector client resources.

(Inherited from ConnectorClientBase)
ExecuteProcedureAsync(String, String, ExecuteProcedureInput, CancellationToken)

Execute action

GetBusinessEventCategoriesAsync(String, CancellationToken)

Gets business events categories

GetBusinessEventsAsync(String, String, CancellationToken)

Gets business events

GetDataSetsAsync(CancellationToken)

Get instances

GetExportableTableAsync(String, String, CancellationToken)

Get metadata of a exportable table

GetExportableTablesAsync(String, CancellationToken)

Lists exportable tables

GetItemAsync(String, String, String, CancellationToken)

Get a record

GetItemsAsync(String, String, String, String, String, Nullable<Int32>, Nullable<Int32>, String, Nullable<Boolean>, CancellationToken)

Lists items present in table

GetLegalEntitiesAsync(String, String, String, CancellationToken)

Gets legal entities

GetProcedureAsync(String, String, CancellationToken)

Get actions metadata

GetProceduresAsync(String, CancellationToken)

Get actions

GetTableAsync(String, String, CancellationToken)

Get entity metadata

GetTablesAsync(String, CancellationToken)

Get list of entities

PatchItemAsync(String, String, String, PatchItemInput, CancellationToken)

Update a record

PostItemAsync(String, String, PostItemInput, CancellationToken)

Create record

ResolveUrl(String)

Resolves a relative path or validates an absolute URL against the connection runtime URL. When the NextLink host matches the connection URL, it's used as-is. When it doesn't match (codeless connectors like ARM return nextLink pointing to the backend host e.g. management.azure.com), the path+query is extracted and routed through the APIM proxy. This is safe because the request still goes through the connection runtime URL with API Hub auth.

(Inherited from ConnectorClientBase)

Applies to