命名空间:microsoft.graph
重要
Microsoft Graph /beta 版本下的 API 可能会发生更改。 不支持在生产应用程序中使用这些 API。 若要确定 API 是否在 v1.0 中可用,请使用 版本 选择器。
表示 QR 代码身份验证方法策略,该策略定义配置设置和目标用户或组,这些用户或组已启用使用 QR 码身份验证方法。
继承自 authenticationMethodConfiguration。
方法
| 方法 | 返回类型 | 说明 |
|---|---|---|
| Get | qrCodePinAuthenticationMethodConfiguration | 读取 qrCodePinAuthenticationMethodConfiguration 对象的属性和关系。 |
| 更新 | qrCodePinAuthenticationMethodConfiguration | 更新 qrCodePinAuthenticationMethodConfiguration 对象的属性。 |
| 删除 | None | 删除 qrCodePinAuthenticationMethodConfiguration 对象。 |
属性
| 属性 | 类型 | 说明 |
|---|---|---|
| excludeTargets | excludeTarget 集合 | 从策略中排除的用户组。 继承自 authenticationMethodConfiguration。 |
| id | String | 身份验证方法策略的标识符。 该值始终 QRCodePin为 。 继承自 实体 |
| pinLength | Int32 | 记忆的字母数字机密代码。 根据 NIST 800-63B,最小长度为 8,不能超过 20 位。 |
| standardQRCodeLifetimeInDays | Int32 | 最大值为 395 天,默认值为 365 天。 |
| state | authenticationMethodState | 继承自 authenticationMethodConfiguration。 可能的值为: enabled、 disabled。 |
关系
| 关系 | 类型 | 说明 |
|---|---|---|
| includeTargets | authenticationMethodTarget 集合 | 启用以使用身份验证方法的组的集合。 |
JSON 表示形式
以下 JSON 表示形式显示了资源类型。
{
"@odata.type": "#microsoft.graph.qrCodePinAuthenticationMethodConfiguration",
"id": "String (identifier)",
"state": "String",
"excludeTargets": [
{
"@odata.type": "microsoft.graph.excludeTarget"
}
],
"standardQRCodeLifetimeInDays": "Integer",
"pinLength": "Integer"
}