hardwareOathTokenAuthenticationMethodDevice 资源类型

命名空间:microsoft.graph

重要

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

在目录中公开硬件 OATH 设备。 有关详细信息,请参阅 [Hardware OATH tokens] (/entra/identity/authentication/concept-authentication-oath-tokens#oath-hardware-tokens-preview]。

继承自 authenticationMethodDevice

方法

方法 返回类型 Description
List hardwareOathTokenAuthenticationMethodDevice 集合 列出清单中的所有硬件 OATH 令牌。
创建 hardwareOathTokenAuthenticationMethodDevice 创建新的 hardwareOathTokenAuthenticationMethodDevice 对象。
创建一个或多个对象 authenticationMethodDevice 创建一个或多个 authenticationMethodDevice 对象。
Get hardwareOathTokenAuthenticationMethodDevice 读取 hardwareOathTokenAuthenticationMethodDevice 对象的属性和关系。
更新 hardwareOathTokenAuthenticationMethodDevice 更新 hardwareOathTokenAuthenticationMethodDevice 对象的属性。
删除 None 删除 authenticationMethodDevice 对象。 首先需要取消分配令牌。
分配用户 user 通过发布到 assignTo 集合来添加 assignTo。

属性

属性 类型 说明
assignedTo identity 将令牌分配到的用户。 可为 Null。 支持 $filtereq)。
displayName String 可提供给硬件 OATH 令牌的名称。 继承自 authenticationMethodDevice
hashFunction hardwareOathTokenHashFunction 硬件令牌的哈希函数。 可能的值为:hmacsha1hmacsha256。 默认值为: hmacsha1。 支持 $filtereq)。
id String 硬件 OATH 令牌的唯一标识符。 继承自 entity
manufacturer String 硬件令牌的制造商名称。 支持 $filtereq)。
model String 硬件令牌的模型名称。 支持 $filtereq)。
secretKey String 供应商提供的特定硬件令牌的密钥。
serialNumber String 特定硬件令牌的序列号,通常位于设备背面。 支持 $select$filter (eq) 。
status hardwareOathTokenStatus 硬件 OATH 令牌的状态。可能的值为:available、、assignedactivatedfailedActivation。 支持 $filter (eq) 。
timeIntervalInSeconds Int32 6 位数验证码的刷新间隔(以秒为单位)。 可能的值为:30 或 60。 支持 $filtereq)。

关系

关系 类型 说明
assignTo user 将硬件 OATH 令牌分配给用户。

JSON 表示形式

以下 JSON 表示形式显示了资源类型。

{
  "@odata.type": "#microsoft.graph.hardwareOathTokenAuthenticationMethodDevice",
  "id": "String (identifier)",
  "displayName": "String",
  "serialNumber": "String",
  "manufacturer": "String",
  "model": "String",
  "secretKey": "String",
  "timeIntervalInSeconds": "Integer",
  "status": "String",
  "assignedTo": {
    "@odata.type": "microsoft.graph.identity"
  },
  "hashFunction": "String"
}