Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


The REST API Connection configuration guidelines can be found here.

Azure Identity Connector's Connection type must always be specified as "azure-identity".

The Properties specific to the Azure Identity Connector's Connection are described below.


Easy Heading Free
navigationTitle

Paneltitle

On this

pagetoc

Page
navigationExpandOptionexpand-all-by-default

Azure Identity Connection Properties


FieldRequiredDefaultMultipleNotesExample
propertiesYes-NoConfiguration object
tenantDomainYes-NoThe Azure tenant domain to be used."myTenantDomain.onmicrosoft.com"
identityCacheSizeNo-NoThe maximum number of identities to be cached.150maxProcessThreadsNo10NoThe maximum number of processing threads for the identity extraction process.15
useProxyNofalseNoEnables the use of a proxy to get access to Azure endpoints.true
proxyHost
If useProxy is  set to true
No-NoThe address of the proxy to be used."http://myproxy.mycompany.com"
proxyPort
If useProxy is  set to true
No-NoThe port of the proxy to be used.9027
socketTimeoutNo"60000ms"NoSocket timeout value."120s"
connectTimeoutNo"60000ms"NoConnection timeout value"120s"
connectionRequestTimeoutNo"60000ms"NoConnection request timeout value"120s"
maxConnectionsNo150NoMaximum number of connection to the different Azure endpoints used.200
maxConnectionsPerRouteNo15NoMaximum number of connection to a specific Azure endpoint.20
Usage

Create example


Code Block
themeRDark
title
Saga_json
TitlePOST /aspire/_api/credentialsconnections
{
    "credential":"aa1bc268-8b54-4ea3-b43d-a15b665d04de",
    "type": "azure-identity",
    "description": "Azure Identity Connection Test",
    "properties": {
		"tenantDomain":"myTenantDomain.onmicrosoft.com",
        "identityCacheSize": "100",
        "maxProcessThreads": "10",
        "useProxy": "false",
        "socketTimeout" : "60s",
        "connectTimeout" : "60s",
        "connectionRequestTimeout" : "60s",
        "maxConnections" : "100",
        "maxConnectionsPerRoute" : "10"
    }
}