[Identity] update docs for IDC and device code credentials (#30656)

This commit is contained in:
KarishmaGhiya 2024-08-05 12:59:16 -07:00 коммит произвёл GitHub
Родитель 9646966abc
Коммит 5513635f78
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 13 добавлений и 3 удалений

Просмотреть файл

@ -46,7 +46,11 @@ export interface DeviceCodeCredentialOptions
*/
tenantId?: string;
/**
* The client (application) ID of an App Registration in the tenant.
* Client ID of the Microsoft Entra application that users will sign into.
* It is recommended that developers register their applications and assign appropriate roles.
* For more information, visit https://aka.ms/identity/AppRegistrationAndRoleAssignment.
* If not specified, users will authenticate to an Azure development application,
* which is not recommended for production scenarios.
*/
clientId?: string;
/**

Просмотреть файл

@ -38,7 +38,11 @@ export interface InteractiveBrowserCredentialNodeOptions
tenantId?: string;
/**
* The client (application) ID of an App Registration in the tenant.
* The Client ID of the Microsoft Entra application that users will sign into.
* It is recommended that developers register their applications and assign appropriate roles.
* For more information, visit https://aka.ms/identity/AppRegistrationAndRoleAssignment.
* If not specified, users will authenticate to an Azure development application,
* which is not recommended for production scenarios.
*/
clientId?: string;
@ -66,8 +70,10 @@ export interface InteractiveBrowserCredentialInBrowserOptions extends Interactiv
tenantId?: string;
/**
* The client (application) ID of an App Registration in the tenant.
* The Client ID of the Microsoft Entra application that users will sign into.
* This parameter is required on the browser.
* Developers need to register their applications and assign appropriate roles.
* For more information, visit https://aka.ms/identity/AppRegistrationAndRoleAssignment.
*/
clientId: string;