Package version:

Interface AzureFunctionLinkedService

Azure Function linked service.

interface AzureFunctionLinkedService {
    annotations?: any[];
    authentication?: any;
    connectVia?: IntegrationRuntimeReference;
    credential?: CredentialReference;
    description?: string;
    encryptedCredential?: string;
    functionAppUrl: any;
    functionKey?: SecretBaseUnion;
    parameters?: {
        [propertyName: string]: ParameterSpecification;
    };
    resourceId?: any;
    type: "AzureFunction";
    version?: string;
}

Hierarchy (view full)

Properties

annotations?: any[]

List of tags that can be used for describing the linked service.

authentication?: any

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

The integration runtime reference.

credential?: CredentialReference

The credential reference containing authentication information.

description?: string

Linked service description.

encryptedCredential?: string

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.

functionAppUrl: any

The endpoint of the Azure Function App. URL will be in the format https://.azurewebsites.net. Type: string (or Expression with resultType string).

functionKey?: SecretBaseUnion

Function or Host key for Azure Function App.

parameters?: {
    [propertyName: string]: ParameterSpecification;
}

Parameters for linked service.

resourceId?: any

Allowed token audiences for azure function. Type: string (or Expression with resultType string).

type

Polymorphic discriminator, which specifies the different types this object can be

version?: string

Version of the linked service.