ElfsquadDataClient Class
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.
Typed client for elfsquaddata connector.
public class ElfsquadDataClient : Azure.Connectors.Sdk.ConnectorClientBase
type ElfsquadDataClient = class
inherit ConnectorClientBase
Public Class ElfsquadDataClient
Inherits ConnectorClientBase
- Inheritance
Constructors
| Name | Description |
|---|---|
| ElfsquadDataClient() | |
| ElfsquadDataClient(String) |
Creates a new ElfsquadDataClient with the specified connection runtime URL string. Uses ManagedIdentityCredential by default. |
| ElfsquadDataClient(Uri, TokenCredential, ConnectorClientOptions) |
Creates a new ElfsquadDataClient with the specified connection runtime URL and credential. |
| ElfsquadDataClient(Uri, TokenCredential) |
Creates a new ElfsquadDataClient with the specified connection runtime URL and credential. |
| ElfsquadDataClient(Uri) |
Creates a new ElfsquadDataClient 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) |
| DeleteEntityByIdAsync(String, String, CancellationToken) |
Delete entity |
| Dispose() | (Inherited from ConnectorClientBase) |
| Dispose(Boolean) |
Disposes the connector client resources. (Inherited from ConnectorClientBase) |
| GetEntitiesAsync(String, Nullable<Int32>, Nullable<Int32>, String, String, String, String, Nullable<Boolean>, CancellationToken) |
Get entities |
| GetEntityByIdAsync(String, String, CancellationToken) |
Get entity by id |
| GetFunctionDefinitionAsync(String, CancellationToken) |
Get function definition |
| GetFunctionsAsync(CancellationToken) |
Get function |
| GetSchemaAsync(String, CancellationToken) |
Get schema |
| GetSchemasAsync(CancellationToken) |
Get schemas |
| GetTriggersAsync(CancellationToken) |
Get triggers |
| InvokeFunctionAsync(String, InvokeFunctionInput, CancellationToken) |
Invoke function |
| PostEntityByIdAsync(String, PostEntityByIdInput, CancellationToken) |
Create entity |
| PutEntityByIdAsync(String, String, PutEntityByIdInput, CancellationToken) |
Update entity |
| 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) |