You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

REST API Credentials configuration guidelines can be found here.

Ldap Identity Connector's Credentials type must always be specified as "ldap-identity".

Properties specific to the Ldap Identity Connector's Credentials are described below.

Ldap Identity Connection Properties


Field

Required

Default

Multiple

NotesExample
typeYes-No

The value must be "".

"ldap-identity"

descriptionYes-NoName of the credential object.

"Ldap IdentityCredential"

propertiesYes-NoConfiguration object
tenantDomainYes-NoThe Azure tenant domain to be used."myTenantDomain.onmicrosoft.com"
useProxyNofalseNoEnables the use of a proxy to get access to Azure endpoints.true
proxyHostNo-NoThe address of the proxy to be used."http://myproxy.mycompany.com"
proxyPortNo-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



No

Example

POST /aspire/_api/connections
{
    "credential":"aa1bc268-8b54-4ea3-b43d-a15b665d04de",
    "type": "ldap-identity",
    "description": "Ldap Identity Connection Test",
    "properties": {
		"tenantDomain":"myTenantDomain.onmicrosoft.com",
        "useProxy": "false",
        "socketTimeout" : "60s",
        "connectTimeout" : "60s",
        "connectionRequestTimeout" : "60s",
        "maxConnections" : "100",
        "maxConnectionsPerRoute" : "10"
    }
}








  • No labels