PlannerClient Constructors

Definition

Overloads

Name Description
PlannerClient()
PlannerClient(String)

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

PlannerClient(Uri)

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

PlannerClient(Uri, TokenCredential)

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

PlannerClient(Uri, TokenCredential, ConnectorClientOptions)

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

PlannerClient()

protected PlannerClient();
Protected Sub New ()

Applies to

PlannerClient(String)

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

public PlannerClient(string connectionRuntimeUrl);
new Azure.Connectors.Sdk.Planner.PlannerClient : string -> Azure.Connectors.Sdk.Planner.PlannerClient
Public Sub New (connectionRuntimeUrl As String)

Parameters

connectionRuntimeUrl
String

The connection runtime URL from Azure Portal.

Applies to

PlannerClient(Uri)

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

public PlannerClient(Uri connectionRuntimeUrl);
new Azure.Connectors.Sdk.Planner.PlannerClient : Uri -> Azure.Connectors.Sdk.Planner.PlannerClient
Public Sub New (connectionRuntimeUrl As Uri)

Parameters

connectionRuntimeUrl
Uri

The connection runtime URL from Azure Portal.

Applies to

PlannerClient(Uri, TokenCredential)

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

public PlannerClient(Uri connectionRuntimeUrl, Azure.Core.TokenCredential credential);
new Azure.Connectors.Sdk.Planner.PlannerClient : Uri * Azure.Core.TokenCredential -> Azure.Connectors.Sdk.Planner.PlannerClient
Public Sub New (connectionRuntimeUrl As Uri, credential As TokenCredential)

Parameters

connectionRuntimeUrl
Uri

The connection runtime URL from Azure Portal.

credential
TokenCredential

The Azure credential for authentication.

Applies to

PlannerClient(Uri, TokenCredential, ConnectorClientOptions)

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

public PlannerClient(Uri connectionRuntimeUrl, Azure.Core.TokenCredential credential, Azure.Connectors.Sdk.ConnectorClientOptions options = default);
new Azure.Connectors.Sdk.Planner.PlannerClient : Uri * Azure.Core.TokenCredential * Azure.Connectors.Sdk.ConnectorClientOptions -> Azure.Connectors.Sdk.Planner.PlannerClient
Public Sub New (connectionRuntimeUrl As Uri, credential As TokenCredential, Optional options As ConnectorClientOptions = Nothing)

Parameters

connectionRuntimeUrl
Uri

The connection runtime URL from Azure Portal.

credential
TokenCredential

The Azure credential for authentication.

options
ConnectorClientOptions

Optional client options for retry, timeout, etc.

Applies to