WindowsHelloForBusinessAuthenticationMethod リソースの種類

名前空間: microsoft.graph

重要

Microsoft Graph の /beta バージョンの API は変更される可能性があります。 実稼働アプリケーションでこれらの API を使用することは、サポートされていません。 v1.0 で API を使用できるかどうかを確認するには、Version セレクターを使用します。

ユーザーに登録されている Windows Hello for Business 認証方法の表現。 Windows Hello for Business は、Windows デバイスのサインイン認証方法です。

これは、authenticationMethod リソースの種類から継承する派生型です。

メソッド

メソッド 戻り値の種類 説明
List windowsHelloForBusinessAuthenticationMethod コレクション windowsHelloForBusinessAuthenticationMethod オブジェクトとそのプロパティの一覧を取得します。
Get windowsHelloForBusinessAuthenticationMethod WindowsHelloForBusinessAuthenticationMethod オブジェクトのプロパティと関係を読み取ります。
Delete なし WindowsHelloForBusinessAuthenticationMethod オブジェクトを削除します。

プロパティ

プロパティ 説明
createdDateTime DateTimeOffset この Windows Hello for Business キーが登録された日時。
displayName 文字列 Windows Hello for Business が登録されているデバイスの名前
id 文字列 この認証方法の一意の識別子。 authenticationMethod から継承
keyStrength authenticationMethodKeyStrength この Windows Hello for Business キーの主な強み。 使用可能な値: normalweakunknown
lastUsedDateTime DateTimeOffset ユーザーが認証方法を最後に使用した日時。 読み取り専用です。 省略可能。 この省略可能な値は、認証方法で設定されない場合は null されます。 タイムスタンプの種類は、ISO 8601 形式を使用して、常に UTC 形式の日付と時刻情報を表します。 たとえば、2014 年 1 月 1 日午前 0 時 (UTC) は、2014-01-01T00:00:00Z です。 authenticationMethod から継承されます。

リレーションシップ

リレーションシップ 説明
デバイス device この Windows Hello for Business キーが存在する登録済みデバイス。 $expand をサポートします。

ユーザーのWindows Hello for Business登録情報を取得する場合、このプロパティは 1 回の GET でのみ返され、?$expand を指定した場合に返されます。 たとえば、GET /users/admin@contoso.com/authentication/windowsHelloForBusinessMethods/_jpuR-TGZtk6aQCLF3BQjA2?$expand=device

次の JSON 表現は、リソースの種類を示しています。

{
  "@odata.type": "#microsoft.graph.windowsHelloForBusinessAuthenticationMethod",
  "id": "String (Identifier)",
  "displayName": "String",
  "createdDateTime": "String (timestamp)",
  "keyStrength": {"@odata.type": "microsoft.graph.authenticationMethodKeyStrength"},
  "lastUsedDateTime": "String (timestamp)",
}