次の方法で共有


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 String 認証方法識別子。
displayName String ユーザーが指定したキーの表示名。
createdDateTime DateTimeOffset このキーがユーザーに登録されたときのタイムスタンプ。
aaGuid String 認証子構成証明 GUID。認証子の型 (make や model など) を示す識別子。
model String FIDO2 セキュリティ キーの製造元割り当てモデル。
attestationCertificates String collection このセキュリティ キーにアタッチされている構成証明証明書または証明書。
attestationLevel attestationLevel この FIDO2 セキュリティ キーの構成証明レベル。 可能な値は attestednotAttestedunknownFutureValue です。
publicKeyCredential webauthnPublicKeyCredential 登録されている WebAuthn 公開キーの資格情報が含まれます。 書き込み要求にのみ使用されます。 このプロパティは、読み取り操作では返されません。

リレーションシップ

なし。

JSON 表記

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

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