PlannerClient 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 planner connector.
public class PlannerClient : Azure.Connectors.Sdk.ConnectorClientBase
type PlannerClient = class
inherit ConnectorClientBase
Public Class PlannerClient
Inherits ConnectorClientBase
- Inheritance
Constructors
| Name | Description |
|---|---|
| PlannerClient() | |
| PlannerClient(String) |
Creates a new PlannerClient with the specified connection runtime URL string. Uses ManagedIdentityCredential by default. |
| PlannerClient(Uri, TokenCredential, ConnectorClientOptions) |
Creates a new PlannerClient with the specified connection runtime URL and credential. |
| PlannerClient(Uri, TokenCredential) |
Creates a new PlannerClient with the specified connection runtime URL and credential. |
| PlannerClient(Uri) |
Creates a new PlannerClient 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 |
|---|---|
| AssignUsersAsync(String, AssignUsersInput, CancellationToken) |
Add assignees to a task |
| 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) |
| CreateBucketAsync(CreateBucketInput, CancellationToken) |
Create a bucket |
| CreateTaskAsync(CreateTaskRequest, CancellationToken) |
Create a task |
| DeleteTaskAsync(String, CancellationToken) |
Delete a task |
| Dispose() | (Inherited from ConnectorClientBase) |
| Dispose(Boolean) |
Disposes the connector client resources. (Inherited from ConnectorClientBase) |
| GetPlanDetailsAsync(String, CancellationToken) |
Get plan details |
| GetTaskAsync(String, CancellationToken) |
Get a task |
| GetTaskDetailsAsync(String, CancellationToken) |
Get task details |
| ListBucketsAsync(String, String, CancellationToken) |
List buckets |
| ListGroupPlansAsync(String, CancellationToken) |
List plans for a group |
| ListGroupsAsync(CancellationToken) |
List groups that I am member of |
| ListMyTasksAsync(CancellationToken) |
List my tasks |
| ListTasksAsync(String, String, CancellationToken) |
List tasks |
| 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) |
| UnassignUsersAsync(String, UnassignUsersInput, CancellationToken) |
Remove assignees from a task |
| UpdateTaskAsync(String, UpdateTaskRequest, CancellationToken) |
Update a task (V2) |
| UpdateTaskDetailsAsync(String, UpdateTaskDetailsRequest, CancellationToken) |
Update task details |