typeorm
Version:
Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.
17 lines (16 loc) • 570 B
TypeScript
export interface AzureActiveDirectoryMsiVmAuthentication {
type: "azure-active-directory-msi-vm";
options: {
/**
* If you user want to connect to an Azure app service using a specific client account
* they need to provide `clientId` asscoiate to their created idnetity.
*
* This is optional for retrieve token from azure web app service
*/
clientId?: string;
/**
* A user need to provide `msiEndpoint` for retriving the accesstoken.
*/
msiEndpoint?: string;
};
}