fido2AuthenticationMethod リソースの種類

名前空間: microsoft.graph

重要

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

ユーザーに登録されている FIDO2 セキュリティ キーの表現。 FIDO2 は、サインイン認証方法です。

fido2AuthenticationMethod リソースは、authenticationMethod リソース型から継承する派生型です。

メソッド

メソッド 戻り値の種類 説明
List fido2AuthenticationMethod コレクション ユーザーの fido2AuthenticationMethod オブジェクトとそのプロパティのリストを取得します。
Create fido2AuthenticationMethod WebAuthn W3C 標準に基づいて新しい fido2AuthenticationMethod オブジェクトを作成します。
Get fido2AuthenticationMethod ユーザーの fido2AuthenticationMethod オブジェクトのプロパティと関係を読み取ります。
Delete なし ユーザーの fido2AuthenticationMethod オブジェクトを削除します。
作成オプション webauthnCredentialCreationOptions Entra ID 互換パスキーを生成して登録するために必要な作成オプションを取得します。

プロパティ

プロパティ 説明
id 文字列 認証方法の識別子。
displayName 文字列 ユーザーによって指定されたキーの表示名。
createdDateTime DateTimeOffset このキーがユーザーに登録されたときのタイムスタンプ。
lastUsedDateTime DateTimeOffset ユーザーが認証方法を最後に使用した日時。 読み取り専用です。 省略可能。 この省略可能な値は、認証方法で設定されない場合は null されます。 タイムスタンプの種類は、ISO 8601 形式を使用して、常に UTC 形式の日付と時刻情報を表します。 たとえば、2014 年 1 月 1 日午前 0 時 (UTC) は、2014-01-01T00:00:00Z です。 authenticationMethod から継承されます。
aaGuid 文字列 Authenticator Attestation GUID。Authenticator の種類 (メーカーやモデルなど) を示す識別子。
model 文字列 FIDO2 セキュリティ キーの製造元割り当てモデル。
attestationCertificates String collection このセキュリティ キーに添付された構成証明証明書。
attestationLevel attestationLevel この FIDO2 セキュリティ キーの構成証明レベル。 使用可能な値: attestednotAttestedunknownFutureValue
passkeyType passkeyType パスキー プロファイルで許可されるパスキーの種類。 使用可能な値: deviceBoundsyncedunknownFutureValue
publicKeyCredential webauthnPublicKeyCredential 登録される WebAuthn 公開キー資格情報を格納します。 書き込み要求にのみ使用されます。 このプロパティは読み取り操作では返されません。

リレーションシップ

なし。

JSON 表記

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

{
  "@odata.type": "#microsoft.graph.fido2AuthenticationMethod",
  "id": "String (identifier)",
  "displayName": "String",
  "createdDateTime": "String (timestamp)",
  "lastUsedDateTime": "String (timestamp)",
  "aaGuid": "String",
  "model": "String",
  "attestationCertificates": [
    "String"
  ],
  "attestationLevel": "String",
  "passkeyType": "String",
  "publicKeyCredential": {
    "@odata.type": "microsoft.graph.webauthnPublicKeyCredential"
  }
}