fido2AuthenticationMethod 资源类型

命名空间:microsoft.graph

重要

Microsoft Graph /beta 版本下的 API 可能会发生更改。 不支持在生产应用程序中使用这些 API。 若要确定 API 是否在 v1.0 中可用,请使用 版本 选择器。

向用户注册的 FIDO2 安全密钥的表示形式。 FIDO2 是一种登录身份验证方法。

fido2AuthenticationMethod 资源是继承自 authenticationMethod 资源类型的派生类型。

方法

方法 返回类型 Description
List fido2AuthenticationMethod 集合 检索用户的 fido2AuthenticationMethod 对象及其属性的列表。
创建 fido2AuthenticationMethod 根据 WebAuthn W3C 标准创建新的 fido2AuthenticationMethod 对象。
Get fido2AuthenticationMethod 读取用户的 fido2AuthenticationMethod 对象的属性和关系。
删除 None 删除用户的 fido2AuthenticationMethod 对象。
创建选项 webauthnCredentialCreationOptions 检索生成和注册Entra ID兼容密钥所需的创建选项。

属性

属性 类型 说明
id String 身份验证方法标识符。
displayName String 用户提供的密钥的显示名称。
createdDateTime DateTimeOffset 将此密钥注册到用户的时间戳。
lastUsedDateTime DateTimeOffset 用户上次使用身份验证方法的日期和时间。 只读。 可选。 如果身份验证方法未填充,则 null 此可选值为 。 时间戳类型使用 ISO 8601 格式表示日期和时间信息,并且始终采用 UTC 格式。 例如,2014 年 1 月 1 日午夜 UTC 为 2014-01-01T00:00:00Z。 继承自 authenticationMethod
aaGuid String 验证器证明 GUID,指示 (类型的标识符,例如,验证器的 make 和 model) 。
model String 制造商分配的 FIDO2 安全密钥模型。
attestationCertificates 字符串集合 附加到此安全密钥的证明证书或证书。
attestationLevel attestationLevel 此 FIDO2 安全密钥的证明级别。 可取值为:attestednotAttestedunknownFutureValue
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",
  "publicKeyCredential": {
    "@odata.type": "microsoft.graph.webauthnPublicKeyCredential"
  }
}