Show / Hide Table of Contents

Class AzureFunctionLinkedService

Azure Function linked service.

Inheritance
System.Object
LinkedService
AzureFunctionLinkedService
Inherited Members
LinkedService.AdditionalProperties
LinkedService.Annotations
LinkedService.ConnectVia
LinkedService.Description
LinkedService.Parameters
LinkedService.Version
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Analytics.Synapse.Artifacts.dll
Syntax
[System.Text.Json.Serialization.JsonConverter(typeof(Azure.Analytics.Synapse.Artifacts.Models.AzureFunctionLinkedService/AzureFunctionLinkedServiceConverter))]
public class AzureFunctionLinkedService : Azure.Analytics.Synapse.Artifacts.Models.LinkedService

Constructors

AzureFunctionLinkedService(Object)

Initializes a new instance of AzureFunctionLinkedService.

Declaration
public AzureFunctionLinkedService (object functionAppUrl);
Parameters
System.Object functionAppUrl

The endpoint of the Azure Function App. URL will be in the format https://<accountName>.azurewebsites.net.

Exceptions
System.ArgumentNullException

functionAppUrl is null.

Properties

Authentication

Type of authentication (Required to specify MSI) used to connect to AzureFunction. Type: string (or Expression with resultType string).

Declaration
public object Authentication { get; set; }
Property Value
System.Object

Credential

The credential reference containing authentication information.

Declaration
public Azure.Analytics.Synapse.Artifacts.Models.CredentialReference Credential { get; set; }
Property Value
CredentialReference

EncryptedCredential

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).

Declaration
public object EncryptedCredential { get; set; }
Property Value
System.Object

FunctionAppUrl

The endpoint of the Azure Function App. URL will be in the format https://<accountName>.azurewebsites.net.

Declaration
public object FunctionAppUrl { get; set; }
Property Value
System.Object

FunctionKey

Function or Host key for Azure Function App. Please note SecretBase is the base class. According to the scenario, a derived class of the base class might need to be assigned here, or this property needs to be casted to one of the possible derived classes. The available derived classes include AzureKeyVaultSecretReference and SecureString.

Declaration
public Azure.Analytics.Synapse.Artifacts.Models.SecretBase FunctionKey { get; set; }
Property Value
SecretBase

ResourceId

Allowed token audiences for azure function.

Declaration
public object ResourceId { get; set; }
Property Value
System.Object

Back to top Azure SDK for .NET