UNPKG

@microsoft/windows-admin-center-sdk

Version:

Microsoft - Windows Admin Center Shell

31 lines (30 loc) 590 B
export interface AadAppConfig { /** * The (Azure) cloud name. */ cloudName: string; /** * The Azure tenant. */ tenant: string; /** * The Azure tenant Id. Same as Tenant. Maintained for backwards compatiblity. */ tenantId: string; /** * The client id. */ clientId: string; /** * The AAD application id. */ appId: string; /** * The AAD application display name. */ appDisplayName: string; /** * The AAD application app verify address. */ appVerifyAddress: string; }